Edit File: cli-config.js
/* * cli-config.js: Config that conform to commonly used CLI logging levels. * * (C) 2010 Charlie Robbins * MIT LICENCE * */ var cliConfig = exports; cliConfig.levels = { silly: 0, input: 1, verbose: 2, prompt: 3, debug: 4, info: 5, data: 6, help: 7, warn: 8, error: 9 }; cliConfig.colors = { silly: 'magenta', input: 'grey', verbose: 'cyan', prompt: 'grey', debug: 'blue', info: 'green', data: 'grey', help: 'cyan', warn: 'yellow', error: 'red' };
Back to File Manager