Licence
ISC
Version
2.0.6
Deps
0
Size
21 kB
Vulns
0
Weekly
0
Logger
Simple and minimalistic logger interface and implementation.
Highlights
- Zero dependencies
- Tidy and compact
- Works in browser
- Console and Logfmt implementations in the box
Usage
const logger = new ConsoleLogger();
// Logs with level "below" warn (debug, info) will not be emitted
logger.level = 'warn';
logger.info('Something happened, nothing to see here');
logger.warn('User account has been suspended', { accountId: '123' });