Coder Social home page Coder Social logo

lumber's People

Contributors

englercj avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

mcculloughsean

lumber's Issues

Log rotate numbers are off

Log rotation works correctly, keeps the right number of files at the right sizes, but the numbers are off:

 my.log
 my.log.2
 my.log.3
 my.log.4
 my.log.5
 my.log.6
 my.log.7
 my.log.8
 my.log.9
 my.log.10
 my.log.11

Seems to skip a number every once in a while, will investigate further when I get a chance.

Text encoder ignoring colorize option of false

I was unable to get a new lumber.encoders.Text to honor a 'colorize' setting of false. I believe the code that sets the colorize option is incorrect:

self.colorize = options.colorize || true;

I've instead patched the Text constructor to do this:

function valid_option(value, def) {
    return (typeof value === "undefined") ? def : value;
}

self.colorize = valid_option(options.colorize, true);
self.timestamp = valid_option(options.timestamp, false);
self.headFormat = valid_option(options.headFormat, '%l: ');
self.dateFormat = valid_option(options.dateFormat, 'isoDateTime');

Inherit defaults

Logging transports should inherit the parent logger's defaults, so defaults can be specified at that level and then will trickle down into the transport's settings.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.