Skip to content

Commit

Permalink
atlas: cleanup stop log message (#1136)
Browse files Browse the repository at this point in the history
The `step` variable is a duration and the toString indicates
the units. Remove the `ms` in the log message which are
confusing and lead to message like `PT1Mms`.
  • Loading branch information
brharrington authored Jun 13, 2024
1 parent 78f523f commit 55c82c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public void stop() {
// Shutdown background tasks to collect data
scheduler.shutdown();
scheduler = null;
logger.info("stopped collecting metrics every {}ms reporting to {}", step, uri);
logger.info("stopped collecting metrics every {} reporting to {}", step, uri);

// Flush data to Atlas
try {
Expand Down

0 comments on commit 55c82c6

Please sign in to comment.