aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/BlazeRuntime.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/BlazeRuntime.java b/src/main/java/com/google/devtools/build/lib/runtime/BlazeRuntime.java
index 3c0c0f2bff..d8a590fefb 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/BlazeRuntime.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/BlazeRuntime.java
@@ -657,7 +657,7 @@ public final class BlazeRuntime {
long stopTime = Profiler.nanoTimeMaybe();
long duration = stopTime - startTime;
if (duration > 0) {
- LOG.info("Spent " + (duration / 1000) + " ms loading persistent action cache");
+ LOG.info("Spent " + (duration / (1000 * 1000)) + " ms loading persistent action cache");
}
Profiler.instance().logSimpleTask(startTime, ProfilerTask.INFO, "Loading action cache");
}