Skip to content

Commit

Permalink
[CELEBORN-835] Format specifiers should be used instead of string con…
Browse files Browse the repository at this point in the history
…catenation.
  • Loading branch information
jiaoqingbo committed Jul 25, 2023
1 parent 2ab88f7 commit ec8b3b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1658,7 +1658,7 @@ protected boolean isStageEnded(int shuffleId) {
}

private StatusCode getPushDataFailCause(String message) {
logger.debug("Push data failed cause message: " + message);
logger.debug("Push data failed cause message: {}", message);
StatusCode cause;
if (message == null) {
logger.error("Push data throw unexpected exception: {}", message);
Expand Down

0 comments on commit ec8b3b3

Please sign in to comment.