Skip to content

Commit a300761

Browse files
committed
update number display
1 parent 4117ecc commit a300761

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/uid2/operator/Main.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,9 +275,9 @@ public static void recordStartupComplete() {
275275
.register(globalRegistry);
276276

277277
if (startupDuration != null) {
278-
LOGGER.info("UID2 Operator startup completed in {:.3f} seconds", durationSeconds);
278+
LOGGER.info("Operator startup completed in {} seconds", String.format("%.3f", durationSeconds));
279279
} else {
280-
LOGGER.warn("UID2 Operator startup completed but timing measurement failed");
280+
LOGGER.warn("Operator startup completed but timing measurement failed");
281281
}
282282
}
283283

0 commit comments

Comments
 (0)