summary refs log tree commit diff
path: root/changelog.d/12589.misc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.59.0rc1David Robertson2022-05-101-1/+0
|
* Remove special-case for `twisted` logger (#12589)Richard van der Hoff2022-04-291-0/+1
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.