Skip to content

Commit

Permalink
improve error formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
estrattonbailey committed Jun 4, 2019
1 parent 2f03a4a commit d2140e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function picoapp (components = {}, initialState = {}) {
try {
cache.push(comp(node, evx))
} catch (e) {
console.error(`🚨 %cpicoapp - ${modules[m]} failed - ${e.message || e}`, 'color: red')
console.log(`🚨 %cpicoapp - ${modules[m]} failed - ${e.message || e}`, 'color: #E85867')
console.error(e)
}
}
Expand Down

0 comments on commit d2140e4

Please sign in to comment.