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.
This commit is contained in:
parent
011d8a8e0c
commit
d3e7424562
|
@ -46,7 +46,10 @@ let
|
||||||
reaction_notices = true;
|
reaction_notices = true;
|
||||||
relay.enable = false;
|
relay.enable = false;
|
||||||
};
|
};
|
||||||
logging.print_level = "info";
|
logging = {
|
||||||
|
print_level = "info";
|
||||||
|
file_name_format = null;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
generatedConfig = pkgs.runCommandNoCC "mautrix-whatsapp-config"
|
generatedConfig = pkgs.runCommandNoCC "mautrix-whatsapp-config"
|
||||||
|
|
Loading…
Reference in a new issue