ashb commented on code in PR #63365:
URL: https://github.com/apache/airflow/pull/63365#discussion_r2920400248
##########
shared/logging/src/airflow_shared/logging/structlog.py:
##########
@@ -539,7 +539,7 @@ def is_atty():
"level": log_level.upper(),
"class": "logging.StreamHandler",
"formatter": "structlog",
- "stream": output,
+ "stream": output if output is not None else sys.stdout,
Review Comment:
Intentional so all structured logs go to the same stream. Previously where
it went to depended on which logging library the call site was using (structlog
to stdout; stdlib to stderr) - this tidies it up
--
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]