Arunodoy18 opened a new pull request, #59661: URL: https://github.com/apache/airflow/pull/59661
The root logger level was hardcoded to INFO instead of respecting the configured logging_level setting. This caused user task code using logging.getLogger(__name__).info() to not show up in task logs unless the log level was artificially high (e.g. level 55). Changes: - Set root logger level to log_level.upper() instead of hardcoded INFO - Add tests verifying root logger respects configured log level - Add test for INFO level filtering (DEBUG messages not shown) This restores the behavior from Airflow 2.x where logger.info() worked as documented. -- 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]
