Skip to content

Commit ad1c5e7

Browse files
nattalliusOrKoN
andcommitted
remove arguments from issues messages
Co-authored-by: Alex Rudenko <OrKoN@users.noreply.github.com>
1 parent f83eeb2 commit ad1c5e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/formatters/consoleFormatter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export interface ConsoleMessageData {
1515
// The short format for a console message, based on a previous format.
1616
export function formatConsoleEventShort(msg: ConsoleMessageData): string {
1717
if (msg.type === 'issue') {
18-
return `msgid=${msg.consoleMessageStableId} [${msg.type}] ${msg.message} (count: ${msg.count}) (${msg.args?.length ?? 0} args)`;
18+
return `msgid=${msg.consoleMessageStableId} [${msg.type}] ${msg.message} (count: ${msg.count})`;
1919
}
2020
return `msgid=${msg.consoleMessageStableId} [${msg.type}] ${msg.message} (${msg.args?.length ?? 0} args)`;
2121
}

0 commit comments

Comments
 (0)