yo-bow
v1.2.0
Published
Yet One more Bunyan Output Wrapper
Downloads
9
Maintainers
Readme
yo-bow (Yet One more Bunyan Output Wrapper)
A Bunyan logger instance that outputs in a non-JSON format
Motivation
Bunyan outputs in JSON format. It is great for processing the logs programmatically, but I had a hard time sift through the logs in that format during my local development. So I wrote this wrapper function that returns a Bunyan logger instance that outputs to a more readable format.
Build status
Code style
---
bracketSpacing: false
printWidth: 80
semi: true
singleQuote: true
tabWidth: 2
useTabs: false
Tech/framework used
Features
- Easy to have Bunyan output to a JSON format or to regular text.
- Also works in Microsoft Windows.
Code Example
Use the library - Just pass in the name of the logger
const logger = require('yo-bow').getLogger('test 1');
let printCount = 0;
logger.trace('success ' + printCount++);
logger.debug('success ' + printCount++);
logger.info('success ' + printCount++);
logger.warn('success ' + printCount++);
logger.error('success ' + printCount++);
// Log Level is set to 'info' as default, so any levels below 'info' will not be displayed
Actual Output
[2017-09-04T17:40:30.168Z] INFO: test 1/6555 on DESKTOP-D2APBPO: success 2
[2017-09-04T17:40:30.170Z] WARN: test 1/6555 on DESKTOP-D2APBPO: success 3
[2017-09-04T17:40:30.170Z] ERROR: test 1/6555 on DESKTOP-D2APBPO: success 4
Use the library - Pass in logging options
const yoBow = require('yo-bow');
const thisLogOptions = {
name: 'test 3',
src: false,
logLevel: 'trace',
env: 'local',
logToJson: false,
streams: [
// additional output stream that has a logging level of warning or
// greater to stdout
{
level: 'warn',
stream: process.stdout
}
]
};
const logger = yoBow.getLogger(thisLogOptions);
let printCount = 0;
logger.trace('success ' + printCount++);
logger.debug('success ' + printCount++);
logger.info('success ' + printCount++);
logger.warn('success ' + printCount++);
logger.error('success ' + printCount++);
Actual Output
{"name":"test 3","hostname":"DESKTOP-D2APBPO","pid":10115,"level":40,"msg":"success 3","time":"2018-08-03T23:46:37.146Z","v":0}
{"name":"test 3","hostname":"DESKTOP-D2APBPO","pid":10115,"level":50,"msg":"success 4","time":"2018-08-03T23:46:37.146Z","v":0}
[2018-08-03T23:46:37.144Z] TRACE: test 3/10115 on DESKTOP-D2APBPO: success 0
[2018-08-03T23:46:37.146Z] DEBUG: test 3/10115 on DESKTOP-D2APBPO: success 1
[2018-08-03T23:46:37.146Z] INFO: test 3/10115 on DESKTOP-D2APBPO: success 2
[2018-08-03T23:46:37.146Z] WARN: test 3/10115 on DESKTOP-D2APBPO: success 3
[2018-08-03T23:46:37.146Z] ERROR: test 3/10115 on DESKTOP-D2APBPO: success 4
Installation
npm install yo-bow --save
Tests
npm test
Contribute
Just fork it, change it, and make a pull request!
Credits
The prettyStream function is based on @jameswyse's comment on GitHub
License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
MIT © Shang Heng Wei