* Sends a logging message to the client, if connected. * Note: You only need to send the parameters object, not the entire JSON RPC message * @see LoggingMessageNotification * @param params * @param sessionId optional for stateless and backward compatibility
(params: LoggingMessageNotification['params'], sessionId?: string)
| 1181 | * @param sessionId optional for stateless and backward compatibility |
| 1182 | */ |
| 1183 | async sendLoggingMessage(params: LoggingMessageNotification['params'], sessionId?: string) { |
| 1184 | return this.server.sendLoggingMessage(params, sessionId); |
| 1185 | } |
| 1186 | /** |
| 1187 | * Sends a resource list changed event to the client, if connected. |
| 1188 | */ |