function ConsoleBackend()

in backends/console.js [27:37]


function ConsoleBackend(opts) {
    if (!(this instanceof ConsoleBackend)) {
        return new ConsoleBackend(opts);
    }

    this.raw = opts ? opts.raw : false;
    this.colorize = opts ? opts.colorize : false;
    this.timestampFormat = opts ? opts.timestampFormat : null;

    EventEmitter.call(this);
}