Skip to content

Add an option to reflect passed log to console (turned off by default) #5

@Arech

Description

@Arech

That would ease debugging when it is convenient to log data into stream and to console at the same time.

change log.js:23 var Log = exports = module.exports = function Log(level, stream, bReflectToConsole){
then add a following line after assigning of this.stream : this.reflect2console = (this.stream === process.stdout ? false : !!bReflectToConsole);

refactor log function in log.js:146 to

log: function(levelStr, msg) {
    if (exports[levelStr] <= this.level) {
        var s = '[' + new Date().toUTCString() + ']'
            + ' ' + levelStr
            + ' ' + msg;
        this.stream.write(s+ '\n');
        if (this.reflect2console) console.log(s);
    }
  },

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions