logger.js 175 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 // By default, do nothing exports.log = function () {}; exports.setLogger = function setLogger(loggerFunction) { exports.enabled = true; exports.log = loggerFunction; };