mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Merge from vscode 10492ba146318412cbee8b76a8c630f226914734
This commit is contained in:
@@ -418,8 +418,8 @@ export function getLogLevel(environmentService: IEnvironmentService): LogLevel {
|
||||
if (environmentService.verbose) {
|
||||
return LogLevel.Trace;
|
||||
}
|
||||
if (typeof environmentService.args.log === 'string') {
|
||||
const logLevel = environmentService.args.log.toLowerCase();
|
||||
if (typeof environmentService.logLevel === 'string') {
|
||||
const logLevel = environmentService.logLevel.toLowerCase();
|
||||
switch (logLevel) {
|
||||
case 'trace':
|
||||
return LogLevel.Trace;
|
||||
|
||||
Reference in New Issue
Block a user