guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/05: guix home: Default verbosity is the same as for 'guix system'.


From: guix-commits
Subject: 02/05: guix home: Default verbosity is the same as for 'guix system'.
Date: Mon, 17 Jan 2022 13:09:29 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit bf23862abc5fba6db2ab5481dd458487df6a784a
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Jan 17 14:57:30 2022 +0100

    guix home: Default verbosity is the same as for 'guix system'.
    
    Previously the default verbosity would always be 3, and
    'verbosity-level' would thus have no effect.
    
    * guix/scripts/home.scm (verbosity-level): Change to level 3 for
    'build'.
    (%default-options): Set 'verbosity' to #f.
---
 guix/scripts/home.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/scripts/home.scm b/guix/scripts/home.scm
index 9573661856..2312e4d313 100644
--- a/guix/scripts/home.scm
+++ b/guix/scripts/home.scm
@@ -105,7 +105,7 @@ Some ACTIONS support additional ARGS.\n"))
   "Return the verbosity level based on OPTS, the alist of parsed options."
   (or (assoc-ref opts 'verbosity)
       (if (eq? (assoc-ref opts 'action) 'build)
-          2 1)))
+          3 1)))
 
 (define %options
   ;; Specification of the command-line options.
@@ -137,7 +137,7 @@ Some ACTIONS support additional ARGS.\n"))
     (print-build-trace? . #t)
     (print-extended-build-trace? . #t)
     (multiplexed-build-output? . #t)
-    (verbosity . 3)
+    (verbosity . #f)                              ;default
     (debug . 0)))
 
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]