Move logDirectory to ExtensionContext (#45922)

* Move the logDirectory to extensionContext

Moves the proposed `logDirectory` to `ExtensionContext` and make it synchronous

* Use string for path instead of URI
This commit is contained in:
Matt Bierner
2018-03-16 14:07:09 -07:00
committed by GitHub
parent bef8583253
commit e822e655b5
5 changed files with 40 additions and 26 deletions

View File

@@ -28,6 +28,7 @@ export interface IExtensionContext {
storagePath: string;
asAbsolutePath(relativePath: string): string;
logger: ExtHostLogger;
readonly logDirectory: string;
}
/**