Merge pull request #185 from cliffhall/add-logging-message-handler

Add support for server logging messages
This commit is contained in:
Ola Hungerford
2025-03-15 09:44:22 -07:00
committed by GitHub

View File

@@ -10,6 +10,7 @@ import {
ListRootsRequestSchema,
ProgressNotificationSchema,
ResourceUpdatedNotificationSchema,
LoggingMessageNotificationSchema,
Request,
Result,
ServerCapabilities,
@@ -258,6 +259,11 @@ export function useConnection({
ResourceUpdatedNotificationSchema,
onNotification,
);
client.setNotificationHandler(
LoggingMessageNotificationSchema,
onNotification,
);
}
if (onStdErrNotification) {