renge/mautrix-whatsapp: Disable logging to file

It logs *all* messages and the level does not influence this. That is
not desirable, so it should be disabled.
nazuna
Simon Bruder 2023-02-07 11:26:42 +01:00
parent 011d8a8e0c
commit d3e7424562
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 4 additions and 1 deletions

View File

@ -46,7 +46,10 @@ let
reaction_notices = true;
relay.enable = false;
};
logging.print_level = "info";
logging = {
print_level = "info";
file_name_format = null;
};
};
generatedConfig = pkgs.runCommandNoCC "mautrix-whatsapp-config"