IGNITE-2681: Binary serialization warning is no longer printed to the log (part 2).
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/42572ad8 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/42572ad8 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/42572ad8 Branch: refs/heads/ignite-2407 Commit: 42572ad88f27aaa0e27582681050f4dc3bed51e6 Parents: 5a663a9 Author: vozerov-gridgain <voze...@gridgain.com> Authored: Fri Feb 26 14:28:02 2016 +0300 Committer: vozerov-gridgain <voze...@gridgain.com> Committed: Fri Feb 26 14:28:02 2016 +0300 ---------------------------------------------------------------------- .../ignite/internal/processors/query/GridQueryProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/42572ad8/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java index 64bbc8f..b13c674 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java @@ -384,7 +384,7 @@ public class GridQueryProcessor extends GridProcessorAdapter { // Indexed types must be translated to CacheTypeMetadata in CacheConfiguration. if (mustDeserializeClss != null) { - U.quietAndWarn(log, "Some classes in query configuration cannot be written in binary format " + + U.warn(log, "Some classes in query configuration cannot be written in binary format " + "because they either implement Externalizable interface or have writeObject/readObject methods. " + "Instances of these classes will be deserialized in order to build indexes. Please ensure that " + "all nodes have these classes in classpath. To enable binary serialization either implement " +