Skip to content

Commit ac36b28

Browse files
committed
WIP
1 parent 0b61179 commit ac36b28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/svelte/src/internal/client/dev/tracing.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ function log_expressions(expressions) {
2424
// eslint-disable-next-line no-console
2525
console.groupCollapsed(
2626
`%c${label} %c${time.toFixed(2)}ms`,
27-
!changed ? 'color: darkgrey; font-weight: normal' : 'color: #fff; font-weight: bold',
27+
changed ? 'color: CornflowerBlue; font-weight: bold' : 'color: grey; font-weight: bold',
2828
'color: grey',
2929
val && typeof val === 'object' && STATE_SYMBOL in val ? snapshot(val, true) : val
3030
);
3131
} else {
3232
// eslint-disable-next-line no-console
3333
console.groupCollapsed(
3434
`%c${label}`,
35-
!changed ? 'color: darkgrey; font-weight: normal' : 'color: #fff; font-weight: bold',
35+
changed ? 'color: CornflowerBlue; font-weight: bold' : 'color: grey; font-weight: bold',
3636
val && typeof val === 'object' && STATE_SYMBOL in val ? snapshot(val, true) : val
3737
);
3838
}

0 commit comments

Comments
 (0)