amoghrajesh commented on code in PR #48427: URL: https://github.com/apache/airflow/pull/48427#discussion_r2015671369
########## airflow-core/src/airflow/api_fastapi/core_api/routes/public/dag_run.py: ########## @@ -73,6 +74,8 @@ from airflow.utils.state import DagRunState from airflow.utils.types import DagRunTriggeredByType, DagRunType +log = structlog.get_logger() Review Comment: Can we associate the logger with the module? Easier imo to comprehend that way ``` log = structlog.get_logger(__name__) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
