Skip to content

Commit 9433821

Browse files
authored
remove critical log level (microsoft#167820)
1 parent 33b2e92 commit 9433821

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ function configureCommandlineSwitchesSync(cliArgs) {
181181
// Persistently enable proposed api via argv.json: https://github.com/microsoft/vscode/issues/99775
182182
'enable-proposed-api',
183183

184-
// Log level to use. Default is 'info'. Allowed values are 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off'.
184+
// Log level to use. Default is 'info'. Allowed values are 'error', 'warn', 'info', 'debug', 'trace', 'off'.
185185
'log-level'
186186
];
187187

src/vs/workbench/electron-sandbox/desktop.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ import product from 'vs/platform/product/common/product';
335335
},
336336
'log-level': {
337337
type: 'string',
338-
description: localize('argv.logLevel', "Log level to use. Default is 'info'. Allowed values are 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off'.")
338+
description: localize('argv.logLevel', "Log level to use. Default is 'info'. Allowed values are 'error', 'warn', 'info', 'debug', 'trace', 'off'.")
339339
}
340340
}
341341
};

0 commit comments

Comments
 (0)