diff --git a/module-options.nix b/module-options.nix index c10a0bb..a9e8f85 100644 --- a/module-options.nix +++ b/module-options.nix @@ -37,6 +37,18 @@ let default = [ ]; example = [ "./node_modules/**" ]; }; + + on-unmatched = mkOption { + description = "Log paths that did not match any formatters at the specified log level."; + type = types.enum [ + "debug" + "info" + "warn" + "error" + "fatal" + ]; + default = "warn"; + }; }; formatter = mkOption {