Log level

main
Valentin Ochs 2022-11-08 08:21:26 +01:00
parent d17552a644
commit 37188e852c
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def init_logging(*,
_log_handlers.append(console_handler)
# Default log output
logging.basicConfig(force=True, level=level, format=_log_format, handlers=_log_handlers)
logging.basicConfig(force=True, level=logging.DEBUG, format=_log_format, handlers=_log_handlers)
def logger(*path: Iterable[str]) -> logging.Logger:
logger = logging.getLogger("door_pi_control")