Skip to content

Commit e3ed9e1

Browse files
committed
fix debug
1 parent 7dfbc87 commit e3ed9e1

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

dev-packages/size-limit-gh-action/utils/SizeLimitFormatter.mjs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,9 @@ export class SizeLimitFormatter {
112112

113113
// DEBUGGING?!
114114
core.debug(
115-
'comparing...',
116-
name,
117-
baseResult.size,
118-
currentResult.size,
119-
Math.abs((currentResult.size - baseResult.size) / baseResult.size) * 100 > threshold,
115+
`comparing ${name} - ${baseResult.size} vs ${currentResult.size} - ${
116+
Math.abs((currentResult.size - baseResult.size) / baseResult.size) * 100
117+
}`,
120118
);
121119

122120
if (!baseResult.size || !currentResult.size) {

0 commit comments

Comments
 (0)