Skip to content
Snippets Groups Projects
Commit 1891d3c0 authored by Max Drexler's avatar Max Drexler
Browse files

formatting

parent 1d689a66
No related branches found
Tags 0.1.1
No related merge requests found
Pipeline #54008 failed
......@@ -64,7 +64,10 @@ def initialize_logging(verbosity: int, rotating_dir: str | None = None) -> None:
if rotating_dir is not None:
file_handler = logging.handlers.RotatingFileHandler(
os.path.join(rotating_dir, LOG_NAME), encoding='utf-8', backupCount=5, maxBytes= 150 * 1024
os.path.join(rotating_dir, LOG_NAME),
encoding="utf-8",
backupCount=5,
maxBytes=150 * 1024,
)
file_handler.setFormatter(log_formatter)
file_handler.setLevel(logging.DEBUG)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment