Skip to content

Commit

Permalink
fix: Use correct string formatting for log message (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpcollins-google committed Jun 7, 2021
1 parent a6ba47f commit da98b0f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -184,7 +184,7 @@ private void handleConfig(long partitionCount) {
}
if (partitionCount < currentSize) {
log.atWarning().log(
"Received an unexpected decrease in partition count. Previous partition count {}, new count {}",
"Received an unexpected decrease in partition count. Previous partition count %s, new count %s",
currentSize,
partitionCount);
return;
Expand Down

0 comments on commit da98b0f

Please sign in to comment.