use LogService in extHostLanguageFeatures and extHostMessageService, #84283

This commit is contained in:
Johannes Rieken
2019-11-11 12:22:55 +01:00
parent 8879cf69cd
commit 8e64adbbde
3 changed files with 31 additions and 28 deletions

View File

@@ -130,7 +130,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
// Other instances
const extHostClipboard = new ExtHostClipboard(rpcProtocol);
const extHostMessageService = new ExtHostMessageService(rpcProtocol);
const extHostMessageService = new ExtHostMessageService(rpcProtocol, extHostLogService);
const extHostDialogs = new ExtHostDialogs(rpcProtocol);
const extHostStatusBar = new ExtHostStatusBar(rpcProtocol);
const extHostLanguages = new ExtHostLanguages(rpcProtocol, extHostDocuments);