We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4695516 commit cbdb096Copy full SHA for cbdb096
1 file changed
src/DevtoolsUtils.ts
@@ -10,6 +10,7 @@ import {
10
type IssuesManagerEventTypes,
11
MarkdownIssueDescription,
12
Marked,
13
+ ProtocolClient,
14
Common,
15
I18n,
16
} from '../node_modules/chrome-devtools-frontend/mcp/mcp.js';
@@ -125,6 +126,9 @@ export function mapIssueToMessageObject(issue: AggregatedIssue) {
125
126
};
127
}
128
129
+// DevTools CDP errors can get noisy.
130
+ProtocolClient.InspectorBackend.test.suppressRequestErrors = true;
131
+
132
I18n.DevToolsLocale.DevToolsLocale.instance({
133
create: true,
134
data: {
0 commit comments