Skip to content

Commit 975ea66

Browse files
committed
IGNITE-28479 Fix Logging at INFO level without checking during GridCollisionManager start
1 parent a8605bd commit 975ea66

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

modules/core/src/main/java/org/apache/ignite/internal/managers/collision/GridCollisionManager.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,10 @@ public GridCollisionManager(GridKernalContext ctx) {
5858
}
5959
});
6060
}
61-
else
62-
log.info("Collision resolution is disabled (all jobs will be activated upon arrival).");
61+
else {
62+
if (log.isInfoEnabled())
63+
log.info("Collision resolution is disabled (all jobs will be activated upon arrival).");
64+
}
6365

6466
if (log.isDebugEnabled())
6567
log.debug(startInfo());

0 commit comments

Comments
 (0)