fix: change logging level to DEBUG for more detailed output

This commit is contained in:
ChuckBuilds
2025-04-23 14:26:04 -05:00
parent f135befb3b
commit e3e49b0542
2 changed files with 8 additions and 1 deletions

2
run.py
View File

@@ -4,7 +4,7 @@ import sys
# Configure logging before importing any other modules
logging.basicConfig(
level=logging.INFO,
level=logging.DEBUG,
format='%(asctime)s.%(msecs)03d - %(levelname)s:%(name)s:%(message)s',
datefmt='%Y-%m-%d %H:%M:%S',
stream=sys.stdout # Explicitly set to stdout