Skip to content

Commit 5df5a84

Browse files
committed
fix(lib/vscode): register LogLevelChannel
1 parent a804363 commit 5df5a84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/vscode/src/vs/server/node/server.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { ServiceCollection } from 'vs/platform/instantiation/common/serviceColle
2929
import { ILocalizationsService } from 'vs/platform/localizations/common/localizations';
3030
import { LocalizationsService } from 'vs/platform/localizations/node/localizations';
3131
import { ConsoleLogger, getLogLevel, ILoggerService, ILogService, MultiplexLogService } from 'vs/platform/log/common/log';
32-
import { LoggerChannel } from 'vs/platform/log/common/logIpc';
32+
import { LogLevelChannel } from 'vs/platform/log/common/logIpc';
3333
import { LoggerService } from 'vs/platform/log/node/loggerService';
3434
import { SpdLogLogger } from 'vs/platform/log/node/spdlogLog';
3535
import product from 'vs/platform/product/common/product';
@@ -250,7 +250,7 @@ export class Vscode {
250250
...environmentService.extraBuiltinExtensionPaths,
251251
];
252252

253-
this.ipc.registerChannel('logger', new LoggerChannel(loggerService));
253+
this.ipc.registerChannel('logger', new LogLevelChannel(logService));
254254
this.ipc.registerChannel(ExtensionHostDebugBroadcastChannel.ChannelName, new ExtensionHostDebugBroadcastChannel());
255255

256256
this.services.set(ILogService, logService);

0 commit comments

Comments
 (0)