We're using Loggly for logging and generally very happy with it, but having upgraded to the Winston methodology I'm now finding that all my logging is not just going to the Loggly server but also being console.log
ed out to stdout (or stderr, whichever that is).
There's not a whole lot to the documentation, and I'm not seeing a way to shut this up. The whole *point of this exercise is I don't want to keep all these logs on my local machine, which is where they will wind up if they're heading to the console.
I tried deleting the Console object from the winston.transports object, but that hasn't done anything.
I'm kind of out of ideas.