pimterry / loglevel

:ledger: Minimal lightweight logging for JavaScript, adding reliable log level methods to wrap any available console.log methods
MIT License
2.62k stars 157 forks source link

log is not show in my chrome #128

Closed AsaYao closed 5 years ago

AsaYao commented 5 years ago

i follow the instructions but why my log is not print in my Chrome image image

pimterry commented 5 years ago

Have you set the log level?

The default level is warn, so log.warn('hello') should work, but log.info('hello') won't appear, unless you call log.setLevel('info') (or below) first.

pimterry commented 5 years ago

Closing for inactivity, but do let me know if you're still having issues.