Skip to content

Commit 994ef66

Browse files
committed
HDDS-1555. Parameterized logging fixed.
1 parent d5faf6e commit 994ef66

File tree

1 file changed

+2
-2
lines changed
  • hadoop-hdds/container-service/src/main/java/org/apache/hadoop/ozone/container/common/transport/server/ratis

1 file changed

+2
-2
lines changed

hadoop-hdds/container-service/src/main/java/org/apache/hadoop/ozone/container/common/transport/server/ratis/XceiverServerRatis.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -619,8 +619,8 @@ void handleInstallSnapshotFromLeader(RaftGroupId groupId,
619619
RoleInfoProto roleInfoProto,
620620
TermIndex firstTermIndexInLog) {
621621
LOG.warn("Install snapshot notification received from Leader with " +
622-
"termIndex : " + firstTermIndexInLog +
623-
", terminating pipeline " + groupId);
622+
"termIndex: {}, terminating pipeline: {}",
623+
firstTermIndexInLog, groupId);
624624
handlePipelineFailure(groupId, roleInfoProto);
625625
}
626626
}

0 commit comments

Comments
 (0)