# IGNITE-419: Applied fix from Ivan V..
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/999fd03c Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/999fd03c Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/999fd03c Branch: refs/heads/ignite-368 Commit: 999fd03cbe5c9ccfd412ae53b4962f8c87a0fa7f Parents: 9b23c75 Author: vozerov-gridgain <voze...@gridgain.com> Authored: Wed Mar 11 12:26:07 2015 +0300 Committer: vozerov-gridgain <voze...@gridgain.com> Committed: Wed Mar 11 12:26:07 2015 +0300 ---------------------------------------------------------------------- .../org/apache/ignite/internal/processors/igfs/IgfsServer.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/999fd03c/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsServer.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsServer.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsServer.java index 72976d8..1146812 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsServer.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/igfs/IgfsServer.java @@ -244,7 +244,8 @@ public class IgfsServer { if (first) { // First message must be HANDSHAKE. if (reqId != 0 || ordinal != IgfsIpcCommand.HANDSHAKE.ordinal()) { - U.warn(log, "Handshake failed."); + if (log.isDebugEnabled()) + log.debug("IGFS IPC handshake failed [reqId=" + reqId + ", ordinal=" + ordinal + ']'); return; }