add a false output channel to the other place we create a client (#720)

This commit is contained in:
Anthony Dresser
2018-02-16 13:04:41 -08:00
committed by Karl Burtram
parent d1cc937f9d
commit cea52d2314
4 changed files with 19 additions and 12 deletions

View File

@@ -411,7 +411,22 @@ export class SqlToolsServiceClient {
configurationSection: SqlToolsServiceClient._constants.extensionConfigSectionName
},
errorHandler: new LanguageClientErrorHandler(SqlToolsServiceClient._constants),
serverConnectionMetadata: this._config.getConfigValue(Constants.serverConnectionMetadata)
serverConnectionMetadata: this._config.getConfigValue(Constants.serverConnectionMetadata),
outputChannel: {
append: () => {
},
appendLine: () => {
},
dispose: () => {
},
clear: () => {
},
hide: () => {
},
name: '',
show: () => {
}
}
};
this._serviceStatus.showServiceLoading();