I'm currently crafting our logging strategy and am looking at bunyan for it's use of JSON as a primary format. More generally, my thinking is that we'll output everything to stdio and then use redirection to route logs accordingly, thereby keeping this logic (or even code configuration) out of my applications.
While bunyan seems really promising from the examples, I'm running into an immediate problem in that no matter how I configure the logger, it still seems to be writing only info messages to stdout. As you can see from
https://gist.github.com/howarddierking/7f0dac11809e571651c3, even when I create the logger to output everything to stdout (at least that's what I think that code should be doing), I still see only the info message written to the console.
Any thoughts on what I'm doing wrong here? I can start stepping into the bunyan module, but hoping that I'm just missing something simple.
thanks,
_howard