Not mounting properly?
See original GitHub issueI was looking for a nuxt logger and came across this and had high hopes. I added everything to the nuxt.config as described, but for what ever reason I keep getting ‘Cannot read property ‘debug’ of undefined’
Ive tried using this in middleware using
export default function({store, app, redirect }) {
if(notAuthenticated) {
app.$log.error('User is not authenticated!')
redirect('/auth')
}
}
I’ve tried using this in the vuex store using
this.$log.debug('checking authentication')
Ive tried using this in a plugin using
import Vue from 'vue'
Vue.$log.debug('Setting theme to be...')
Nothing seems to work and it keeps acting as if its not mounted. Id really like to use this. What can i do to get this to work?
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (2 by maintainers)
Top Results From Across the Web
External Hard Drive Not Mounting Mac? Fix It without Data Loss
Method 1: Restart your Mac and reconnect the drive · Method 2: Check Mac's drive display settings · Method 3: Force mount the...
Read more >External Hard Drive Is Not Mounting on a Mac: 6 Methods to Fix
To access any drive through a computer, it needs to be properly mounted. By default, this process should happen in the background.
Read more >How to Fix: External Drive Not Mounting on Mac - Disk Drill
Fix #2: Remount External Disk in Disk Utility · Start Disk Utility · Select the disk drive if you see it in the...
Read more >External Hard Drive Not Mounting on Mac? Your Fixes Are Here
External hard drive not mounting on Mac may result in access denied, disk not showing/not recognized, etc., errors. This page lists the causes ......
Read more >External Hard Drive not Mounting | Apple Developer Forums
Similar issue with my Western Digital external USB drives. None mount, but they are also not seen by Disk Utility. They do show...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
so I made a plugin called logger.js with the following code
Two things to note here
Hope this helps
Awesome, thank you!
On Mon, 1 Oct 2018, 20:37 James Hood, notifications@github.com wrote: