aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/skylark
diff options
context:
space:
mode:
authorGravatar vladmos <vladmos@google.com>2018-03-22 03:54:13 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-03-22 03:55:33 -0700
commit72d51094d3bb5c835650abdb362a9bd4d1a2fef6 (patch)
treed9d096193f6ad765b80d5ca6ca2ed7542d1a7541 /site/docs/skylark
parent1d182e9318442cbbc0354f0522956ac1e2fd64ef (diff)
Remove the flag --incompatible_show_all_print_messages
RELNOTES[INC]: The flag --incompatible_show_all_print_messages is removed. Messages generated by `print` statements from any package will be displayed as DEBUG messages. PiperOrigin-RevId: 190043451
Diffstat (limited to 'site/docs/skylark')
-rw-r--r--site/docs/skylark/backward-compatibility.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/site/docs/skylark/backward-compatibility.md b/site/docs/skylark/backward-compatibility.md
index 28057bb179..8cffaeafd4 100644
--- a/site/docs/skylark/backward-compatibility.md
+++ b/site/docs/skylark/backward-compatibility.md
@@ -39,7 +39,6 @@ guarded behind flags in the current release:
* [String is no longer iterable](#string-is-no-longer-iterable)
* [New actions API](#new-actions-api)
* [Glob tracking](#glob-tracking)
-* [Print statements](#print-statements)
### Set constructor
@@ -195,17 +194,4 @@ no user-visible impact.
* Flag: `--incompatible_disable_glob_tracking`
* Default: `true`
-
-### Print statements
-
-`print` statements in Skylark code are supposed to be used for debugging only.
-Messages they yield used to be filtered out so that only messages from the same
-package as the top level target being built were shown by default (it was
-possible to override by providing, for example, `--output_filter=`). That made
-debugging hard. When the flag is set to true, all print messages are shown in
-the console without exceptions.
-
-* Flag: `--incompatible_show_all_print_messages`
-* Default: `true`
-
<!-- Add new options here -->