Skip to content
Snippets Groups Projects
Commit aaf9a154 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

fix: add logger implementation

Apparently there were still usages of the $log object we’ve removed in
52227b1d. We fix that by simply using
window.console.
parent d7600bc3
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,12 @@ app.use(router)
app.use(BootstrapVue)
app.use(TranslationPlugin)
app.use(VueToast, { position: 'bottom-left' })
store.$log = app.$log
store.$log = window.console
app.use({
install(Vue) {
Vue.prototype.$log = window.console
},
})
app.mount('#app')
const authStore = useAuthStore()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment