language-server-protocol/_includes/messages/3.18/setTrace.md
2023-07-17 14:29:03 +02:00

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: SetTraceParams defined as follows:
interface SetTraceParams {
	/**
	 * The new value that should be assigned to the trace setting.
	 */
	value: TraceValue;
}