your-workflow/backend/app/core/logger.py

8 lines
165 B
Python

import logging
logging.basicConfig(
level=logging.INFO, format="%(asctime)s - %(name)s - %(levelname)s:\n%(message)s"
)
logger = logging.getLogger("workflow")