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 f302b45 commit ab7c815Copy full SHA for ab7c815
src/formatters/consoleFormatter.ts
@@ -15,7 +15,7 @@ export interface ConsoleMessageData {
15
// The short format for a console message, based on a previous format.
16
export function formatConsoleEventShort(msg: ConsoleMessageData): string {
17
if (msg.type === 'issue') {
18
- return `msgid=${msg.consoleMessageStableId} [${msg.type}] ${msg.message} (count: ${msg.count}) (${msg.args?.length ?? 0} args)`;
+ return `msgid=${msg.consoleMessageStableId} [${msg.type}] ${msg.message} (count: ${msg.count})`;
19
}
20
return `msgid=${msg.consoleMessageStableId} [${msg.type}] ${msg.message} (${msg.args?.length ?? 0} args)`;
21
0 commit comments