Skip to content

Commit

Permalink
refactor(vue-app): add group for ssr logs (#5770)
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkdo authored and Atinux committed May 21, 2019
1 parent ffb1844 commit a764e1f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/vue-app/template/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,14 @@ const NUXT = window.<%= globals.context %> || {}
Object.assign(Vue.config, <%= serialize(vue.config) %>)<%= isTest ? '// eslint-disable-line' : '' %>

<% if (isDev) { %>
const logger = consola.withScope('nuxt:ssr')
const logs = NUXT.logs || []
logs.forEach(logObj => logger[logObj.type](logObj))
delete NUXT.logs
if (logs.length > 0) {
console.group("%c🚀 Nuxt.js SSR Logs", 'font-size: 110%')
const logger = consola.withScope('nuxt:ssr')
logs.forEach(logObj => logger[logObj.type](logObj))
delete NUXT.logs
console.groupEnd()
}
<% } %>
<% if (debug) { %>
// Setup global Vue error handler
Expand Down

0 comments on commit a764e1f

Please sign in to comment.