This commit is contained in:
Sandeep Somavarapu
2021-07-16 14:36:58 +02:00
parent 8f774f132e
commit 15c8678229
2 changed files with 2 additions and 1 deletions

View File

@@ -154,7 +154,7 @@ export class ExtHostOutputService implements ExtHostOutputServiceShape {
if (!name) {
throw new Error('illegal argument `name`. must not be falsy');
}
return new ExtHostPushOutputChannel(extension.identifier.value, name, this._proxy);
return new ExtHostPushOutputChannel(name, extension.identifier.value, this._proxy);
}
createOutputChannelFromLogFile(name: string, file: URI): vscode.OutputChannel {