API Stability Short-Term

The disableLogCollectorDebugLogging() GraphQL mutation may be used to disable logging of debugging information related to Log Collector.

Syntax

Below is the syntax for the disableLogCollectorDebugLogging() mutation field:

graphql
disableLogCollectorDebugLogging: boolean!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  disableLogCollectorDebugLogging
}
Example Responses
Show:
json
{
  "data": {
    "disableLogCollectorDebugLogging": true
  }
}