Default log.level to "warn"

Make the [log] section and its level field optional, falling back to
"warn" when omitted. Update the sample TOML, Nix module and README to
reflect the new default.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
rzuasti
2026-06-02 18:05:59 -04:00
co-authored by Claude Opus 4.8
parent 920279e9b3
commit 0393378d24
4 changed files with 48 additions and 4 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ in {
log.level = mkOption {
type = types.str;
description = "Log level for the oott service";
default = "info";
default = "warn";
};
arp_scanner.enabled = mkOption {
type = types.bool;