From 718a7f2a6947f24f85dd0611e85d27a282ef3eb5 Mon Sep 17 00:00:00 2001 From: Simon de Lang Date: Fri, 20 Nov 2020 12:01:29 +0100 Subject: [PATCH] fix(CLI help): remove non-existant logLevel 'all' (#2626) Please use `--logLevel trace` to get the same functionality --- packages/core/src/stryker-cli.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/stryker-cli.ts b/packages/core/src/stryker-cli.ts index 49a93ae7df..605f8ccfcb 100644 --- a/packages/core/src/stryker-cli.ts +++ b/packages/core/src/stryker-cli.ts @@ -107,11 +107,11 @@ export default class StrykerCli { ) .option( '--logLevel ', - `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 ', - `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 ', 'Indicates whether or not Stryker should use colors in console.', parseBoolean) .option(