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 485b04e commit 6345245Copy full SHA for 6345245
src/formatters/consoleFormatter.ts
@@ -171,11 +171,12 @@ export function formatIssue(
171
...affectedResources.map(item => {
172
const details = [];
173
if (item.uid) details.push(`uid=${item.uid}`);
174
- if (item.data) details.push(`data=${JSON.stringify(item.data)}`);
175
- if (item.request)
+ if (item.request) {
176
details.push(
177
(typeof item.request === 'number' ? `reqid=` : 'url=') + item.request,
178
);
+ }
179
+ if (item.data) details.push(`data=${JSON.stringify(item.data)}`);
180
return details.join(' ');
181
}),
182
0 commit comments