aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar ruperts <ruperts@google.com>2018-03-05 22:36:21 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-03-05 22:38:31 -0800
commitb5a575afd7534c9d963273c3789bbba80f2994fa (patch)
tree32fdfbe2c507fbd9d1b50c03b8d7f0eab4011c14
parent66c52e37d83371d93cea712c73f6b7355e0a0d0c (diff)
Remove references to the "message_log" from Bazel.
RELNOTES: None. PiperOrigin-RevId: 187974423
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/InfoCommand.java1
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/InfoItem.java19
2 files changed, 0 insertions, 20 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/InfoCommand.java b/src/main/java/com/google/devtools/build/lib/runtime/commands/InfoCommand.java
index e10e5735e1..753f6def36 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/InfoCommand.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/InfoCommand.java
@@ -210,7 +210,6 @@ public class InfoCommand implements BlazeCommand {
new InfoItem.BlazeBinInfoItem(productName),
new InfoItem.BlazeGenfilesInfoItem(productName),
new InfoItem.BlazeTestlogsInfoItem(productName),
- new InfoItem.MessageLogInfoItem(),
new InfoItem.ReleaseInfoItem(productName),
new InfoItem.ServerPidInfoItem(productName),
new InfoItem.PackagePathInfoItem(commandOptions),
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/InfoItem.java b/src/main/java/com/google/devtools/build/lib/runtime/commands/InfoItem.java
index 7d5e05f045..004335d388 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/InfoItem.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/InfoItem.java
@@ -271,25 +271,6 @@ public abstract class InfoItem {
}
/**
- * Info item for the message log
- */
- public static final class MessageLogInfoItem extends InfoItem {
- public MessageLogInfoItem() {
- super("message_log" ,
- "Location of a log containing machine readable message in LogMessage protobuf format.",
- false);
- }
-
- @Override
- public byte[] get(Supplier<BuildConfiguration> configurationSupplier, CommandEnvironment env)
- throws AbruptExitException {
- checkNotNull(configurationSupplier);
- // NB: Duplicated in EventLogModule
- return print(env.getRuntime().getWorkspace().getOutputBase().getRelative("message.log"));
- }
- }
-
- /**
* Info item for release
*/
public static final class ReleaseInfoItem extends InfoItem {