We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdccf52 commit 6d86701Copy full SHA for 6d86701
packages/browser-utils/src/networkUtils.ts
@@ -64,7 +64,7 @@ export function parseXhrResponseHeaders(xhr: XMLHttpRequest): Record<string, str
64
try {
65
headers = xhr.getAllResponseHeaders();
66
} catch (error) {
67
- DEBUG_BUILD && debug.exception(error, 'Failed to get xhr response headers');
+ DEBUG_BUILD && debug.error(error, 'Failed to get xhr response headers', xhr);
68
return {};
69
}
70
0 commit comments