Took out log level to env variable LOGURU_LEVEL

This commit is contained in:
norohind 2022-04-10 19:20:55 +03:00
parent 52437392df
commit 3ea43f8df9
Signed by: norohind
GPG Key ID: 01C3BECC26FB59E1

View File

@ -9,7 +9,7 @@ import sys
import inspect
logger.remove()
logger.add(sys.stderr, level="DEBUG")
logger.add(sys.stderr, diagnose=False, colorize=False) # Please set debug level by env variable LOGURU_LEVEL
shutting_down: bool = False
can_be_shutdown: bool = False