mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 01:26:14 +01:00
Switch synapse to a structured log output, easier to machine process
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
b7cdd44967
commit
0fef19e47e
|
@ -2,17 +2,12 @@
|
||||||
{
|
{
|
||||||
version = 1;
|
version = 1;
|
||||||
|
|
||||||
formatters.precise.format = "%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(request)s - %(message)s";
|
formatters.structured.class = "synapse.logging.TerseJsonFormatter";
|
||||||
handlers.console = {
|
handlers.console = {
|
||||||
class = "logging.StreamHandler";
|
class = "logging.StreamHandler";
|
||||||
formatter = "precise";
|
formatter = "structured";
|
||||||
};
|
};
|
||||||
|
|
||||||
loggers."synapse.storage.SQL".level = "INFO";
|
loggers."synapse.storage.SQL".level = "INFO";
|
||||||
root = {
|
loggers."synapse".level = "INFO";
|
||||||
level = "INFO";
|
|
||||||
handlers = [ "console" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
disable_existing_loggers = false;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue