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:
parent
e0474b3194
commit
abc51d1654
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue