Unverified Commit 18a3ea7d authored by Ryan Lahfa's avatar Ryan Lahfa Committed by GitHub
Browse files

Merge pull request #288637 from emilylange/nixos-garage-log-levels

nixos/garage: allow all available log levels in `cfg.logLevel`
parents d3c7c717 993083f0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ in
    };

    logLevel = mkOption {
      type = types.enum ([ "info" "debug" "trace" ]);
      type = types.enum ([ "error" "warn" "info" "debug" "trace" ]);
      default = "info";
      example = "debug";
      description = lib.mdDoc "Garage log level, see <https://garagehq.deuxfleurs.fr/documentation/quick-start/#launching-the-garage-server> for examples.";