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/91edd7e0 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/91edd7e0 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/91edd7e0 Branch: refs/heads/ignite-2801 Commit: 91edd7e04d7e90829d9ad176d1f3b31d7a8ebadf Parents: 7d26ba8 Author: vozerov-gridgain <[email protected]> Authored: Fri Feb 26 14:28:02 2016 +0300 Committer: vozerov-gridgain <[email protected]> Committed: Mon Feb 29 13:07:18 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/91edd7e0/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 93adc05..074e7e5 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 " +
