nixos/gitea: switch default log level to Info

This commit is contained in:
Sandro 2021-10-01 19:52:35 +02:00 committed by GitHub
parent 378d2c5dce
commit 5d53e38d24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,7 +55,7 @@ in
description = "Root path for log files.";
};
level = mkOption {
default = "Trace";
default = "Info";
type = types.enum [ "Trace" "Debug" "Info" "Warn" "Error" "Critical" ];
description = "General log level.";
};