renge/synapse: Fix synapse log config

The parameter name changed, which lead to synapse ignoring the wrong
config option.
nazuna
Simon Bruder 2023-01-07 17:02:38 +01:00
parent 4d99a4a232
commit d1a29ef2dd
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ in
# adapted from https://github.com/NixOS/nixpkgs/blob/7e10bf4327491a6ebccbe1aaa8e6c6c0aca4663a/nixos/modules/services/misc/matrix-synapse-log_config.yaml
# - set root.level to WARNING instead of INFO
logConfig = builtins.toJSON {
log_config = pkgs.writeText "log_config.yaml" (builtins.toJSON {
version = 1;
formatters.journal_fmt.format = "%(name)s: [%(request)s] %(message)s";
@ -72,7 +72,7 @@ in
};
disable_existing_loggers = false;
};
});
max_upload_size = "50M";