Selaa lähdekoodia

Update default log level to DEBUG for enhanced logging during development

Carles Sentis 6 päivää sitten
vanhempi
sitoutus
2f614198ca
2 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 1 1
      src/config/config.py
  2. 1 1
      trading_bot.py

+ 1 - 1
src/config/config.py

@@ -41,7 +41,7 @@ class Config:
     DEFAULT_SLIPPAGE = 0.005  # 0.5%
     
     # Logging
-    LOG_LEVEL = os.getenv('LOG_LEVEL', 'INFO').upper()
+    LOG_LEVEL = os.getenv('LOG_LEVEL', 'DEBUG').upper()
     
     # Log file configuration
     LOG_TO_FILE: bool = os.getenv('LOG_TO_FILE', 'true').lower() == 'true'

+ 1 - 1
trading_bot.py

@@ -14,7 +14,7 @@ from datetime import datetime
 from pathlib import Path
 
 # Bot version
-BOT_VERSION = "2.4.204"
+BOT_VERSION = "2.4.205"
 
 # Add src directory to Python path
 sys.path.insert(0, str(Path(__file__).parent / "src"))