LoggingMessageNotification
data class LoggingMessageNotification(val params: LoggingMessageNotification.Params) : ServerNotification(source)
Notification of a log message passed from server to client. If no logging level request has been sent from the client, the server MAY decide which messages to send automatically.
Types
Link copied to clipboard
data class Params(val level: LoggingLevel, val logger: String? = null, val data: JsonElement, val _meta: JsonObject = EmptyJsonObject) : NotificationParams
Link copied to clipboard
data class SetLevelRequest(val level: LoggingLevel, val _meta: JsonObject = EmptyJsonObject) : ClientRequest, WithMeta
A request from the client to the server to enable or adjust logging.