fix: Treat overflowing -v flags as DEBUG (#1419)

Signed-off-by: Eugene <fogaprod@gmail.com>
This commit is contained in:
Eugene 2025-04-19 13:02:41 +04:00 committed by GitHub
parent 88948b0bba
commit 8012a3e4d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -421,7 +421,7 @@ def convert( # noqa: C901
logging.basicConfig(level=logging.WARNING)
elif verbose == 1:
logging.basicConfig(level=logging.INFO)
elif verbose == 2:
else:
logging.basicConfig(level=logging.DEBUG)
settings.debug.visualize_cells = debug_visualize_cells