← Back to Log domain

Log.disable

Disables log domain, prevents further log entries from being reported to the client.

Domain: Log stable

Example Request

{
  "id": 1,
  "method": "Log.disable"
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('Log.disable');
console.log(result);