This commit is contained in:
Dobromir Popov
2025-07-23 13:39:41 +03:00
parent 944a7b79e6
commit df17a99247
13 changed files with 663 additions and 695 deletions

View File

@ -24,6 +24,7 @@ import sys
from pathlib import Path
from threading import Thread
import time
from safe_logging import setup_safe_logging
# Add project root to path
project_root = Path(__file__).parent
@ -395,7 +396,7 @@ async def main():
# Setup logging and ensure directories exist
Path("logs").mkdir(exist_ok=True)
Path("NN/models/saved").mkdir(parents=True, exist_ok=True)
setup_logging()
setup_safe_logging()
try:
logger.info("=" * 70)