Network.setAttachDebugStackSpecifies whether to attach a page script stack id in requests
| Name | Type | Description |
|---|---|---|
enabled | boolean | Whether to attach a page script stack for debugging purpose. |
{
"id": 1,
"method": "Network.setAttachDebugStack",
"params": {
"enabled": true
}
}
{
"id": 1,
"result": {}
}
const result = await send('Network.setAttachDebugStack', {"enabled": true});
console.log(result);