Remove extra `ms` from log message (#42068)
This log message logs a `TimeValue` which includes units, but also logs an extra `ms`. This commit removes the extra `ms`.
This commit is contained in:
parent
1be5bb5bfd
commit
2a8a64d3f1
|
@ -243,7 +243,7 @@ public class JoinHelper {
|
|||
}
|
||||
|
||||
void logWarnWithTimestamp() {
|
||||
logger.info(() -> new ParameterizedMessage("last failed join attempt was {} ms ago, failed to join {} with {}",
|
||||
logger.info(() -> new ParameterizedMessage("last failed join attempt was {} ago, failed to join {} with {}",
|
||||
TimeValue.timeValueMillis(TimeValue.nsecToMSec(System.nanoTime() - timestamp)),
|
||||
destination,
|
||||
joinRequest),
|
||||
|
|
Loading…
Reference in New Issue