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 a475456 commit cea1988Copy full SHA for cea1988
src/plugins/logger.js
@@ -28,9 +28,9 @@ export default function createLogger ({
28
console.log(message)
29
}
30
31
- console.log('%c prev state', 'color: #9E9E9E; font-weight: bold', prevState)
+ console.log('%c prev state', 'color: #9E9E9E; font-weight: bold', transformer(prevState))
32
console.log('%c mutation', 'color: #03A9F4; font-weight: bold', formattedMutation)
33
- console.log('%c next state', 'color: #4CAF50; font-weight: bold', nextState)
+ console.log('%c next state', 'color: #4CAF50; font-weight: bold', transformer(nextState))
34
35
try {
36
console.groupEnd()
0 commit comments