aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2015-08-31 10:47:08 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2015-08-31 19:13:36 +0000
commit7ace50057756b7d2fcb7a11e1ef2375704f02d06 (patch)
tree7b920a8eb6a23332018e7db5b10eefa6457020f2
parent21ade15f4b8c4ab803d720f9a11f7a6754f606ce (diff)
Only print the label (and not the configuration hash key) for error messages with --keep_going.
-- MOS_MIGRATED_REVID=101921704
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/SkyframeBuildView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/SkyframeBuildView.java b/src/main/java/com/google/devtools/build/lib/skyframe/SkyframeBuildView.java
index 4d2010c55e..1eecdb71f1 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/SkyframeBuildView.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/SkyframeBuildView.java
@@ -298,7 +298,7 @@ public final class SkyframeBuildView {
}
skyframeExecutor.getReporter().handle(
Event.warn("errors encountered while analyzing target '"
- + label + "': it will not be built"));
+ + label.getLabel() + "': it will not be built"));
eventBus.post(new AnalysisFailureEvent(
LabelAndConfiguration.of(label.getLabel(), label.getConfiguration()), root));
}