Files
threejs-redering-test/backend/app/core/logging_config.py
2025-11-26 18:42:51 +09:00

9 lines
183 B
Python

import logging
def setup_logging():
"""
Sets up the logging for the application.
"""
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)