logtron
logtron copied to clipboard
A logging MACHINE
Running `yarn` gives ``` ➜ logtron git:(master) yarn yarn install v0.21.0-20170208.2352 info No lockfile found. [1/4] 🔍 Resolving packages... warning uber-raven > [email protected]: use uuid module instead warning body >...
node 0.10.32, cluster mode, disk backend only logger stops writing after running for sometime. upon inspection of the logger object, the buffer is full. ```javascript worker 40> logger.streams.disk { _writableState:...
Currently when we fail to serialize a record we will inspect it to a depth of 4 ( https://github.com/uber/logtron/blob/master/transforms/safe-serialize-meta.js#L34 ). Dependending on the data structure, a depth of 4 can...
`logger.info('some message')` results in the pid, host or any other default meta information to not log cc: @Raynos
The below simple code generates maximum call stack size error. I'm working on the fix right now. ``` javascript 'use strict'; var test = require('tape'); var captureStdio = require('./lib/capture-stdio.js'); var...
@jcorbin insists that some logging meta is expensive to construct and should only be constructed when the log channel is being consumed. To that end, consider accepting a function instead...
We're using winston ~0.7.2, which has an out of date dependency chain. Not much of a big deal, but you get warnings like this one: ``` npm WARN engine [email protected]:...
What do you think of a "logger server". A server that requires a very lightweight client, that then would handle propagating the logs to each of the configured transports. This...