From 9f16a20f3d35dbc13ba6c8830745e9fc40d408eb Mon Sep 17 00:00:00 2001 From: Qyriad Date: Sun, 26 May 2024 11:15:10 -0600 Subject: [PATCH] Revert "bump the extra --version info from info to notice, -vv -> -v" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit d003dcd7f4ce6b16c3494398a4edd36e668a1b46. d0390b5cf¹ bumped the default verbosity of nix3 commands, making this change obsolete. [1]: d0390b5cf2d232febaa89aa6d8b07c547513a460 Change-Id: I1ddc36ea4514cd8d2855ff334accf6e98c210879 --- src/libmain/shared.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc index 96ecbac8f..33323a226 100644 --- a/src/libmain/shared.cc +++ b/src/libmain/shared.cc @@ -282,7 +282,7 @@ void parseCmdLine(const std::string & programName, const Strings & args, void printVersion(const std::string & programName) { std::cout << fmt("%1% (Lix, like Nix) %2%", programName, nixVersion) << std::endl; - if (verbosity > lvlNotice) { + if (verbosity > lvlInfo) { Strings cfg; #if HAVE_BOEHMGC cfg.push_back("gc");