MCPcopy
hub / github.com/microsoft/vscode-languageserver-node / Logger

Interface Logger

jsonrpc/src/main.ts:160–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158}
159
160export interface Logger {
161 error(message: string): void;
162 warn(message: string): void;
163 info(message: string): void;
164 log(message: string): void;
165}
166
167export const NullLogger: Logger = Object.freeze({
168 error: () => {},

Callers 9

invokeMethod · 0.65
handleResponseFunction · 0.65
handleNotificationFunction · 0.65
handleInvalidMessageFunction · 0.65
warnMethod · 0.65
startFunction · 0.65
infoMethod · 0.65
startFunction · 0.65
handleConnectionClosedFunction · 0.65

Implementers 2

ConsoleLoggerclient/src/client.ts
ConnectionLoggerserver/src/main.ts

Calls

no outgoing calls

Tested by

no test coverage detected