diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-04-29 22:05:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-29 22:05:18 +0100 |
commit | 8d156ec0ba17d848581f18aa40ebfd76dda763d4 (patch) | |
tree | f4a90f8ea59c808eb1f0a8d756c59763558f9615 /docs | |
parent | Allow unused ignores in "bleeding edge" CI (#12576) (diff) | |
download | synapse-8d156ec0ba17d848581f18aa40ebfd76dda763d4.tar.xz |
Remove special-case for `twisted` logger (#12589)
This was originally added when we first added a `MemoryHandler` to the default log config back in https://github.com/matrix-org/synapse/pull/8040, to ensure that we didn't explode with an infinite loop if there was an error formatting the logs. Since then, we made additional improvements to logging which make this workaround redundant. In particular: * we no longer attempt to log un-UTF8-decodable byte sequences, which were the most likely cause of an error in the first place. * https://github.com/matrix-org/synapse/pull/8268 ensures that in the unlikely case that there *is* an error, it won't cause an infinite loop.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sample_log_config.yaml | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/docs/sample_log_config.yaml b/docs/sample_log_config.yaml index 2485ad25ed..3065a0e2d9 100644 --- a/docs/sample_log_config.yaml +++ b/docs/sample_log_config.yaml @@ -62,13 +62,6 @@ loggers: # information such as access tokens. level: INFO - twisted: - # We send the twisted logging directly to the file handler, - # to work around https://github.com/matrix-org/synapse/issues/3471 - # when using "buffer" logger. Use "console" to log to stderr instead. - handlers: [file] - propagate: false - root: level: INFO |