From d25ca767d78bbc6ffaa2876692b50b594b86a39d Mon Sep 17 00:00:00 2001 From: Jean-Hadrien Chabran Date: Fri, 10 Nov 2023 16:05:25 +0100 Subject: [PATCH] bzl: do not show full commmand line for ctags in dev (#58261) --- dev/universal-ctags-dev | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev/universal-ctags-dev b/dev/universal-ctags-dev index 0e260a2e336..fed80b9d178 100755 --- a/dev/universal-ctags-dev +++ b/dev/universal-ctags-dev @@ -5,4 +5,7 @@ # To use your own `universal-ctags` binary instead of this wrapper in your local dev server, use # `CTAGS_COMMAND=path/to/ctags sg start`. -bazel run //dev/tools:universal-ctags -- "$@" +# We silence a few things, because the arguments that symbols pass to this script, which are then passed to +# the bazel run are printed out again by Bazel by default. And they're very long, so much that it hads about +# 40 lines, adding unecessary noise to the output of `sg start` +bazel run //dev/tools:universal-ctags --logging=0 --noshow_progress --ui_event_filters=-info,-debug,-stdout -- "$@"