We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9a4268 commit 87a5522Copy full SHA for 87a5522
Bot/bot.py
@@ -17,6 +17,8 @@
17
18
config = cfg.ConfigHandler("config.properties") # type: ignore
19
20
+logger.remove()
21
+
22
log_level = config.get_log_level()
23
logger.add(
24
"client.log",
@@ -29,7 +31,7 @@
29
31
retention="31 days",
30
32
)
33
-logger.add(sys.stderr, level=log_level)
34
+logger.add(sys.stdout, level=log_level)
35
36
# When cargo hold is full, the ship will dock up and unload cargo, undock and warp to another belt
37
cargo_loading_time_adjustment = config.get_cargo_loading_time_adjustment()
0 commit comments