dotfiles/nixng/containers/matrix/synapse/log_config.nix
magic_rb aff0158ef7
Reformat the whole flake using alejandra
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-03-02 22:17:03 +01:00

24 lines
401 B
Nix

{}: {
version = 1;
formatters.structured.class = "synapse.logging.TerseJsonFormatter";
handlers.console = {
class = "logging.StreamHandler";
formatter = "structured";
};
loggers."synapse.storage.SQL" = {
level = "INFO";
};
loggers."synapse" = {
level = "INFO";
};
root = {
level = "INFO";
handlers = ["console"];
};
disable_existing_loggers = true;
}