Merge pull request #1794 from fgimian/fix/1793-correct-streams-in-default-log-config

Ensured that default logging streams are prefixed with ext:// so they work correctly
This commit is contained in:
Randall Leeds 2018-05-24 15:58:05 -07:00 committed by GitHub
commit ba4b927ae5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,12 +74,12 @@ CONFIG_DEFAULTS = dict(
"console": {
"class": "logging.StreamHandler",
"formatter": "generic",
"stream": "sys.stdout"
"stream": "ext://sys.stdout"
},
"error_console": {
"class": "logging.StreamHandler",
"formatter": "generic",
"stream": "sys.stderr"
"stream": "ext://sys.stderr"
},
},
formatters={