Stop announcing the profile path.
We got multiple reports from Bazel users that this is just log spam, e.g. https://github.com/bazelbuild/bazel/issues/9988
RELNOTES: None
PiperOrigin-RevId: 278569109
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/CommonCommandOptions.java b/src/main/java/com/google/devtools/build/lib/runtime/CommonCommandOptions.java
index 25411a2..839e312 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/CommonCommandOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/CommonCommandOptions.java
@@ -309,7 +309,7 @@
@Option(
name = "experimental_announce_profile_path",
- defaultValue = "true",
+ defaultValue = "false",
documentationCategory = OptionDocumentationCategory.LOGGING,
effectTags = {OptionEffectTag.AFFECTS_OUTPUTS, OptionEffectTag.BAZEL_MONITORING},
help = "If enabled, adds the JSON profile path to the log.")