Skip to content

Commit 9e072c0

Browse files
committed
🔧 fix: Change logging stream from stdout to stderr
Modify default logging stream to use stderr instead of stdout for better error handling and separation of standard output and error streams allowing piping yaml output to different tools
1 parent 46a3410 commit 9e072c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phabfive/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def init_logging(log_level):
3737
"class": "logging.StreamHandler",
3838
"level": log_level,
3939
"formatter": "simple",
40-
"stream": "ext://sys.stdout",
40+
"stream": "ext://sys.stderr",
4141
},
4242
},
4343
"formatters": {

0 commit comments

Comments
 (0)