aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime
diff options
context:
space:
mode:
authorGravatar Klaus Aehlig <aehlig@google.com>2016-04-09 07:47:13 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-04-11 11:21:34 +0000
commit63049ccb3fd64563ac5c6a46742aefc6fba4e568 (patch)
treede4b5802c8b4803f2d48492c42221c1932de57a8 /src/main/java/com/google/devtools/build/lib/runtime
parent4906126e366d6fafb4a4fb0d9c90f0db2b0df766 (diff)
experimental UI: squeeze dots in last sample action
When showing the earliest started actions in the progress bar of the experimental UI, it is a wasted line to use a whole line just to show dots indicating that more actions are running; instead, just put the dots on the same line as the last action. -- Change-Id: I37fcb654f689786ab522036b563409b15b85437f Reviewed-on: https://bazel-review.googlesource.com/#/c/3290 MOS_MIGRATED_REVID=119439830
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/runtime')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/ExperimentalStateTracker.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/ExperimentalStateTracker.java b/src/main/java/com/google/devtools/build/lib/runtime/ExperimentalStateTracker.java
index bddd3c086e..1791ae33bc 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/ExperimentalStateTracker.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/ExperimentalStateTracker.java
@@ -152,7 +152,7 @@ class ExperimentalStateTracker {
}
}
if (count < runningActions.size()) {
- terminalWriter.newline().append(" ...");
+ terminalWriter.append(" ...");
}
}