mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
420 B
420 B
SetTrace Notification (➡️)
A notification that should be used by the client to modify the trace setting of the server.
Notification:
- method: '$/setTrace'
- params:
SetTraceParamsdefined as follows:
interface SetTraceParams {
/**
* The new value that should be assigned to the trace setting.
*/
value: TraceValue;
}