diff options
| author | Tomas Volf <~@wolfsden.cz> | 2025-10-07 11:52:12 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-11-29 18:46:51 +0100 |
| commit | 6618803875d2b104e2c23d5eab3eda0a32355428 (patch) | |
| tree | d1f9f343b2438c35a6f6a3451f59a1ba0d21f4de | |
| parent | 8c1fa0ed1202112dd8a8cf5398caa12d8e489cc8 (diff) | |
monad-repl: Improve docstring for "verbosity" meta command.
* guix/monad-repl.scm (verbosity): Describe valid values.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| -rw-r--r-- | guix/monad-repl.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/monad-repl.scm b/guix/monad-repl.scm index db4fe3c699c..f4863c0c5c1 100644 --- a/guix/monad-repl.scm +++ b/guix/monad-repl.scm @@ -122,7 +122,9 @@ Run EXP through the store monad." (define-meta-command ((verbosity guix) repl (level)) "verbosity LEVEL -Change build verbosity to LEVEL." +Change build verbosity to LEVEL. + +0 means silent, 1 means quiet, 2 means verbose, >3 means very verbose." (set! %build-verbosity (repl-eval repl level))) (define-meta-command ((lower guix) repl (form)) |
