Skip to content

Commit

Permalink
[grid] Fixing a log output [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed Sep 13, 2021
1 parent 025d96e commit f2d458f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ private LocalNode(
.ticker(ticker)
.removalListener((RemovalListener<SessionId, SessionSlot>) notification -> {
// Attempt to stop the session
LOG.log(Debug.getDebugLogLevel(), "Stopping session %s", notification.getKey().toString());
LOG.log(Debug.getDebugLogLevel(), "Stopping session {0}", notification.getKey().toString());
SessionSlot slot = notification.getValue();
if (!slot.isAvailable()) {
slot.stop();
Expand Down

0 comments on commit f2d458f

Please sign in to comment.