We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4117ecc commit a300761Copy full SHA for a300761
src/main/java/com/uid2/operator/Main.java
@@ -275,9 +275,9 @@ public static void recordStartupComplete() {
275
.register(globalRegistry);
276
277
if (startupDuration != null) {
278
- LOGGER.info("UID2 Operator startup completed in {:.3f} seconds", durationSeconds);
+ LOGGER.info("Operator startup completed in {} seconds", String.format("%.3f", durationSeconds));
279
} else {
280
- LOGGER.warn("UID2 Operator startup completed but timing measurement failed");
+ LOGGER.warn("Operator startup completed but timing measurement failed");
281
}
282
283
0 commit comments