Hi, On Sat, 23 Sep 2023 at 18:08, "jgart" <jg...@dismail.de> wrote:
> Where should the user of the Guix command-line interface be expected > to read about the verbosity LEVEL argument that they can pass to > `--verbosity` and that is also valid? Well, for helping me in muscling my memory, I have this patch applied to some Guix I run. --8<---------------cut here---------------start------------->8--- diff --git a/guix/scripts/build.scm b/guix/scripts/build.scm index 72a24f91ac..35cb888c3b 100644 --- a/guix/scripts/build.scm +++ b/guix/scripts/build.scm @@ -452,8 +452,10 @@ (define (show-help) -r, --root=FILE make FILE a symlink to the result, and register it as a garbage collector root")) (display (G_ " - -v, --verbosity=LEVEL use the given verbosity LEVEL")) - (display (G_ " + -v, --verbosity=LEVEL use the given verbosity LEVEL, range 0-3 + 0 = no output, 1 = quiet, 2 = 1 + download URLs, + 3 = all on standard error")) + (display (G_ " -q, --quiet do not show the build log")) (display (G_ " --log-file return the log file names for the given derivations")) --8<---------------cut here---------------end--------------->8--- Cheers, simon