0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

nixos/authelia: complete level enum

This commit is contained in:
hatch01 2024-09-17 21:26:20 +02:00 committed by eymeric
parent e0474b3194
commit abc51d1654
No known key found for this signature in database

View file

@ -165,10 +165,10 @@ let
log = { log = {
level = mkOption { level = mkOption {
type = types.enum [ "info" "debug" "trace" ]; type = types.enum [ "trace" "debug" "info" "warn" "error" ];
default = "debug"; default = "debug";
example = "info"; example = "info";
description = "Level of verbosity for logs: info, debug, trace."; description = "Level of verbosity for logs.";
}; };
format = mkOption { format = mkOption {