Vishwaspatel2401 commented on PR #64829: URL: https://github.com/apache/airflow/pull/64829#issuecomment-4229219483
Hi @jscheffl, I've addressed both review comments: 1) Simplified _log_message — removed the if/else branch and collapsed it into a single self.log.log(level, formatted_message) call (also removed the unnecessary "%s" pass-through). 2) Added level detection to the async path — AsyncPodManager.fetch_container_logs_before_current_sec() now calls _parse_log_level() and uses self.log.log(level, ...) so deferrable/async task logs are also forwarded at the correct level instead of always INFO. Tests updated and all 118 tests passing. Please take another look when you get a chance! -- 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]
