File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,7 @@ export class ExtensionHostMain {
178
178
initData . environment . extensionTestsLocationURI = URI . revive ( rpcProtocol . transformIncomingURIs ( initData . environment . extensionTestsLocationURI ) ) ;
179
179
initData . environment . globalStorageHome = URI . revive ( rpcProtocol . transformIncomingURIs ( initData . environment . globalStorageHome ) ) ;
180
180
initData . environment . workspaceStorageHome = URI . revive ( rpcProtocol . transformIncomingURIs ( initData . environment . workspaceStorageHome ) ) ;
181
+ initData . environment . extensionTelemetryLogResource = URI . revive ( rpcProtocol . transformIncomingURIs ( initData . environment . extensionTelemetryLogResource ) ) ;
181
182
initData . nlsBaseUrl = URI . revive ( rpcProtocol . transformIncomingURIs ( initData . nlsBaseUrl ) ) ;
182
183
initData . logsLocation = URI . revive ( rpcProtocol . transformIncomingURIs ( initData . logsLocation ) ) ;
183
184
initData . logFile = URI . revive ( rpcProtocol . transformIncomingURIs ( initData . logFile ) ) ;
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ export class BrowserWorkbenchEnvironmentService implements IBrowserWorkbenchEnvi
131
131
132
132
@memoize
133
133
get extHostTelemetryLogFile ( ) : URI {
134
- return joinPath ( this . extHostLogsPath , 'telemetry .log' ) ;
134
+ return joinPath ( this . extHostLogsPath , 'extensionTelemetry .log' ) ;
135
135
}
136
136
137
137
private extensionHostDebugEnvironment : IExtensionHostDebugEnvironment | undefined = undefined ;
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ export class NativeWorkbenchEnvironmentService extends AbstractNativeEnvironment
96
96
97
97
@memoize
98
98
get extHostTelemetryLogFile ( ) : URI {
99
- return joinPath ( this . extHostLogsPath , 'telemetry .log' ) ;
99
+ return joinPath ( this . extHostLogsPath , 'extensionTelemetry .log' ) ;
100
100
}
101
101
102
102
@memoize
You can’t perform that action at this time.
0 commit comments