node-bunyan
node-bunyan copied to clipboard
a simple and fast JSON logging module for node.js services
seems related to #515 following snippet: ``` require("bunyan") var bunyan = require('bunyan'); var log = bunyan.createLogger({name: 'myapp', level: 'INFO'}); const msg = 'au revoir'; log.info('hi'); log.info({msg, lang: 'fr'}, msg); log.info({msg,...
A plan to get out of the current node-bunyan issue/PR pile and get the project feeling more healthy. I've had some informal offers to help in maintenance work, hence a...
I get the following error in my application. ``` bunyan usage error: internal/process/next_tick.js:188: attempt to log with an unbound log method: `this` is: { console: [Getter], ... ``` This is...
Just curious to how I can create a custom level name and level value? This way I can have more useful log files. example idea {level: 'loginError', value:51, msg: 'etc'}
Recently implemented node-bunyan on a project, and we use a variety of log.info, error and warn throughout the project. When viewing logs, we are seeing the following. Instead of seeing...
`"bunyan": "1.8.12",` Mac OSX 10.14.6 VS Code 1.47.3 Node 12.18.1 Logger option ``` streams: [ { level: logLevel, type: 'rotating-file', path: path.join(logDir, logfileName), period: '1h', count: 2 } ] ```...
Hi, We use Bunyan in an NPM module that gets imported into a few Meteor projects. I'm trying to use rotating files, but have an issue with mv > AssertionError:...
Is there a way for bunyan to return it's existing registered logger instances?
@trentm Should this project be considered deprecated? It doesn't appear to be actively maintained. No PRs have been merged in nine months. No issues or PRs have been commented on...
I ran the command `nodemon . | bunyan` and both components work fine, but this produces an error when I exit: ``` npm ERR! code ELIFECYCLE npm ERR! errno 1...