diff --git a/src/main/java/com/threerings/io/FieldMarshaller.java b/src/main/java/com/threerings/io/FieldMarshaller.java index 9ca834842..fad908718 100644 --- a/src/main/java/com/threerings/io/FieldMarshaller.java +++ b/src/main/java/com/threerings/io/FieldMarshaller.java @@ -119,7 +119,9 @@ public abstract class FieldMarshaller if (fm == null) { Class collClass = Streamer.getCollectionClass(ftype); if (collClass != null && !collClass.equals(ftype)) { - log.warning("Specific field types are discouraged for Collections and Maps.", + log.warning("Specific field types are discouraged " + + "for Iterables/Collections and Maps. The implementation type may not be " + + "recreated on the other side.", "class", field.getDeclaringClass(), "field", field.getName(), "type", ftype, "shouldBe", collClass); fm = _marshallers.get(collClass);