Add enable logs setting for Flat File Import (#7342)

* Add config for enabling Flat File Import logging

* Move logs to default log location for extensions

* Add localized strings
This commit is contained in:
Charles Gagnon
2019-09-24 18:07:46 -07:00
committed by GitHub
parent 82b19614e1
commit a29ae4d3b9
4 changed files with 18 additions and 7 deletions

View File

@@ -18,10 +18,6 @@ export function getAppDataPath(): string {
}
}
export function getDefaultLogLocation(): string {
return path.join(getAppDataPath(), 'azuredatastudio');
}
export function ensure(target: object, key: string): any {
if (target[key] === void 0) {
target[key] = {} as any;