output: move append() to IOutputChannel

This commit is contained in:
isidor
2016-04-13 17:15:37 +02:00
parent 8317c45b73
commit 85294e40a5
8 changed files with 61 additions and 44 deletions

View File

@@ -88,7 +88,7 @@ export class MainThreadOutputService {
}
public append(channel: string, value: string): TPromise<void> {
this._outputService.append(channel, value);
this._outputService.getOutputChannel(channel).append(value);
return undefined;
}