Simon Priet e69a613a37 feat: Created a mini nodeJS server with NewMan for testing without PostMan GUI.
This will mimic a run in a CD/CI environment or docker container.
2021-09-08 14:01:19 +02:00

34 lines
1.0 KiB
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
const util = require('util');
const Handler = require('./handler');
const StreamHandler = require('./stream');
const LEVELS = require('../levels');
function ConsoleHandler(options) {
options = options || {};
options.stream = process.stdout;
this._out = new StreamHandler(options);
options.stream = process.stderr;
this._err = new StreamHandler(options);
Handler.call(this, options);
}
util.inherits(ConsoleHandler, Handler);
ConsoleHandler.prototype.emit = function consoleEmit(record) {
var handler = (record.level >= LEVELS.WARN) ? this._err : this._out;
handler.emit(record);
};
ConsoleHandler.prototype.setFormatter = function setFormatter(formatter) {
Handler.prototype.setFormatter.call(this, formatter);
this._out.setFormatter(formatter);
this._err.setFormatter(formatter);
};
module.exports = ConsoleHandler;