You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building on #8588 there's a desire to improve the output of Synapse structured logging.
Currently a "standard" log line would be turned into JSON (this was a curl to /_matrix/client/r0/login to get the login flows, but other logs look similar):
This would transform to (note that whitespace was added for visibility, normally this would be a single line with no whitespaec between JSON separators):
The log line includes a formatted message, which makes it difficult to search in a structured way.
Currently logging a message with additional fields requires including the fields twice (using the standard logging flow and the extra keyword to the logger).
The text was updated successfully, but these errors were encountered:
This issue has been migrated from #8683.
Building on #8588 there's a desire to improve the output of Synapse structured logging.
Currently a "standard" log line would be turned into JSON (this was a curl to
/_matrix/client/r0/login
to get the login flows, but other logs look similar):This would transform to (note that whitespace was added for visibility, normally this would be a single line with no whitespaec between JSON separators):
A few improvements we'll want to make:
extra
keyword to the logger).The text was updated successfully, but these errors were encountered: