#57618 Enable logging output channels

This commit is contained in:
Sandeep Somavarapu
2018-09-04 15:27:05 +02:00
parent 5dbd093581
commit e5a1664d74

View File

@@ -114,7 +114,8 @@ export class ExtHostOutputService {
if (!name) {
throw new Error('illegal argument `name`. must not be falsy');
} else {
return logging ? new ExtHostLoggingOutputChannel(name, this._outputDir, this._proxy) : new ExtHostOutputChannel(name, this._proxy);
// return logging ? new ExtHostLoggingOutputChannel(name, this._outputDir, this._proxy) : new ExtHostOutputChannel(name, this._proxy);
return new ExtHostLoggingOutputChannel(name, this._outputDir, this._proxy);
}
}
}