mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-31 01:25:38 -05:00
upgrade service downloader (#20703)
* use new service downloader * update other extensions * fix errors
This commit is contained in:
@@ -85,12 +85,25 @@ export function getConfigLogRetentionSeconds(): number {
|
||||
}
|
||||
}
|
||||
|
||||
export function getConfigTracingLevel(): string {
|
||||
/**
|
||||
* The tracing level defined in the package.json
|
||||
*/
|
||||
export enum TracingLevel {
|
||||
All = 'All',
|
||||
Off = 'Off',
|
||||
Critical = 'Critical',
|
||||
Error = 'Error',
|
||||
Warning = 'Warning',
|
||||
Information = 'Information',
|
||||
Verbose = 'Verbose'
|
||||
}
|
||||
|
||||
export function getConfigTracingLevel(): TracingLevel {
|
||||
let config = getConfiguration();
|
||||
if (config) {
|
||||
return config[configTracingLevel];
|
||||
} else {
|
||||
return undefined;
|
||||
return TracingLevel.Critical;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user