From 416d589ab988b9d1bf1ff7ddd877c3d570b21f8d Mon Sep 17 00:00:00 2001
From: Bastien Le Querrec <blq@laquadrature.net>
Date: Fri, 21 Jun 2024 23:33:34 +0200
Subject: [PATCH] =?UTF-8?q?cli:=20corrige=20une=20incompatibilit=C3=A9=20e?=
 =?UTF-8?q?ntre=20-v=20et=20-vv?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 cli.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cli.py b/cli.py
index 8d06c62..063f2fd 100755
--- a/cli.py
+++ b/cli.py
@@ -166,7 +166,7 @@ parser.add_argument(
 )
 args = parser.parse_args()
 
-if args.v or os.getenv('VERBOSE'):
+if (args.v or os.getenv('VERBOSE')) and not args.vv and not os.getenv('VVERBOSE'):
     logging.basicConfig(level=logging.INFO)
     logging.getLogger("stem").setLevel(logging.WARNING)
 
-- 
GitLab