This commit is contained in:
2025-10-05 22:29:22 +02:00
parent 85f2d2c6f7
commit 969533f1de
4 changed files with 16 additions and 10 deletions

View File

@@ -66,7 +66,7 @@ class EnvironmentConfig:
# Logging
LOG_LEVEL: str = os.getenv('LOG_LEVEL', 'INFO')
LOG_FILE: str = os.getenv('LOG_FILE', 'logs/aniworld.log')
LOG_FILE: str = os.getenv('LOG_FILE', './logs/aniworld.log')
@classmethod
def get_database_config(cls) -> Dict[str, Any]:
@@ -196,7 +196,7 @@ MAX_CONCURRENT_DOWNLOADS=3
# Logging
LOG_LEVEL=INFO
LOG_FILE=logs/aniworld.log
LOG_FILE=./logs/aniworld.log
"""
with open(file_path, 'w', encoding='utf-8') as f: