UNPKG

384 BJavaScriptView Raw
1const debug = require('debug');
2
3const mainLogger = debug('penny:main');
4const scssLogger = debug('penny:scss');
5const cssLogger = debug('penny:css');
6const pugLogger = debug('penny:pug');
7const jsLogger = debug('penny:js');
8
9module.exports = { mainLogger, scssLogger, cssLogger, pugLogger, jsLogger };
10
11module.exports.logger = function(srcExt) {
12 return debug(`penny:${srcExt}`);
13}