aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime
diff options
context:
space:
mode:
authorGravatar jingwen <jingwen@google.com>2017-12-14 11:50:41 -0500
committerGravatar John Cater <jcater@google.com>2017-12-14 12:38:43 -0500
commitab97d786e9400b70c4513d5b5635fa676487cacf (patch)
treeaff3ac06c389fb17dee6ddb318ce043b667b1bbc /src/main/java/com/google/devtools/build/lib/runtime
parent1419d64c7549d26a8a111485072d2411dc3a5a85 (diff)
Properly capitalize Build Event Protocol in Blaze output for consistency.
Before: ____Waiting for build event protocol upload: 0s ____Waiting for Build Event Protocol upload to finish. ____Build Event Protocol upload finished successfully. After: ____Waiting for Build Event Protocol upload: 0s ____Waiting for Build Event Protocol upload to finish. ____Build Event Protocol upload finished successfully. RELNOTES: None. PiperOrigin-RevId: 179049827
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/runtime')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/BuildEventStreamer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/BuildEventStreamer.java b/src/main/java/com/google/devtools/build/lib/runtime/BuildEventStreamer.java
index 5394abb84e..6cb2821d28 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/BuildEventStreamer.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/BuildEventStreamer.java
@@ -321,7 +321,7 @@ public class BuildEventStreamer implements EventHandler {
long deltaNanos = System.nanoTime() - startNanos;
long deltaSeconds = TimeUnit.NANOSECONDS.toSeconds(deltaNanos);
Event waitEvt =
- of(PROGRESS, null, "Waiting for build event protocol upload: " + deltaSeconds + "s");
+ of(PROGRESS, null, "Waiting for Build Event Protocol upload: " + deltaSeconds + "s");
if (reporter != null) {
reporter.handle(waitEvt);
}