Avoid warn logging for custom converters using Collection.
If the collection type is not a store-native type, we no longer issue a warn log. Converters can be registered for List or Collection types and convert into a different, non-collection type while being a support converter instead of forcing a specific write type.
This is e.g. the case for MongoDB where a List of numbers is converted to the Vector type.
Closes#3306
privatestaticfinalStringREAD_CONVERTER_NOT_SIMPLE="Registering converter from %s to %s as reading converter although it doesn't convert from a store-supported type; You might want to check your annotation setup at the converter implementation";
privatestaticfinalStringWRITE_CONVERTER_NOT_SIMPLE="Registering converter from %s to %s as writing converter although it doesn't convert to a store-supported type; You might want to check your annotation setup at the converter implementation";
privatestaticfinalStringNOT_A_CONVERTER="Converter %s is neither a Spring Converter, GenericConverter or ConverterFactory";
@ -324,7 +324,8 @@ public class CustomConversions {
@@ -324,7 +324,8 @@ public class CustomConversions {