Skip to content

Commit

Permalink
fix(CLI help): remove non-existant logLevel 'all' (#2626)
Browse files Browse the repository at this point in the history
Please use `--logLevel trace` to get the same functionality
  • Loading branch information
simondel committed Nov 20, 2020
1 parent 90bc393 commit 718a7f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/stryker-cli.ts
Expand Up @@ -107,11 +107,11 @@ export default class StrykerCli {
)
.option(
'--logLevel <level>',
`Set the log level for the console. Possible values: fatal, error, warn, info, debug, trace, all and off. Default is "${defaultValues.logLevel}"`
`Set the log level for the console. Possible values: fatal, error, warn, info, debug, trace and off. Default is "${defaultValues.logLevel}"`
)
.option(
'--fileLogLevel <level>',
`Set the log4js log level for the "stryker.log" file. Possible values: fatal, error, warn, info, debug, trace, all and off. Default is "${defaultValues.fileLogLevel}"`
`Set the log4js log level for the "stryker.log" file. Possible values: fatal, error, warn, info, debug, trace and off. Default is "${defaultValues.fileLogLevel}"`
)
.option('--allowConsoleColors <true/false>', 'Indicates whether or not Stryker should use colors in console.', parseBoolean)
.option(
Expand Down

0 comments on commit 718a7f2

Please sign in to comment.