Explorar el Código

Update bot version to 3.0.334 and change log rotation type to time-based for improved management

Carles Sentis hace 4 días
padre
commit
e97f73ac22
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1 1
      config/env.example
  2. 1 1
      trading_bot.py

+ 1 - 1
config/env.example

@@ -134,7 +134,7 @@ LOG_TO_FILE=true
 LOG_FILE_PATH=logs/trading_bot.log
 
 # Log rotation type: 'size' (rotate when file gets too big) or 'time' (rotate daily/hourly)
-LOG_ROTATION_TYPE=size
+LOG_ROTATION_TYPE=time
 
 # For size-based rotation: max file size in MB before rotation
 LOG_MAX_SIZE_MB=10

+ 1 - 1
trading_bot.py

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