0.0.7 • Published 12 months ago
@vyke/sola v0.0.7
Simple and small logger for any Javascript environment
Installation
npm i @vyke/sola
API
Sola
Core sola class
const sola = new Sola({ tag: 'my-app' })
sola.log('hello sola') // <- my-app hello sola
const customTag = sola.withTag('mytag')
customTag.log('hello sola') // <- my-app:mytag hello sola