Remove crit as an option from the CLI entirely (#7169)

https://github.com/sigp/lighthouse/issues/7165
This commit is contained in:
ThreeHrSleep
2025-03-27 06:56:03 +05:30
committed by GitHub
parent 6f31d44343
commit ca8eaea116
8 changed files with 16 additions and 23 deletions

View File

@@ -140,7 +140,7 @@ fn main() {
.value_name("LEVEL")
.help("The verbosity level used when emitting logs to the log file.")
.action(ArgAction::Set)
.value_parser(["info", "debug", "trace", "warn", "error", "crit"])
.value_parser(["info", "debug", "trace", "warn", "error"])
.default_value("debug")
.global(true)
.display_order(0)
@@ -261,7 +261,7 @@ fn main() {
.value_name("LEVEL")
.help("Specifies the verbosity level used when emitting logs to the terminal.")
.action(ArgAction::Set)
.value_parser(["info", "debug", "trace", "warn", "error", "crit"])
.value_parser(["info", "debug", "trace", "warn", "error"])
.global(true)
.default_value("info")
.display_order(0)