UNPKG

apeman-tmpl

Version:
17 lines (14 loc) 328 B
/** * @memberof module:apeman-tmpl/lib/logging * @constructor RenderLogger */ "use strict"; const colorprint = require('colorprint'); module.exports = colorprint.define({ logTmpls: function (tmpls) { let s = this; tmpls && tmpls.forEach((tmpl) => { s.trace(tmpl.path); }); } });