mirror of https://github.com/embarklabs/embark.git
25 lines
321 B
JavaScript
25 lines
321 B
JavaScript
|
var colors = require('colors');
|
||
|
|
||
|
var Logger = {
|
||
|
logLevel: 'info',
|
||
|
|
||
|
info: function(txt) {
|
||
|
console.log(txt.blue);
|
||
|
},
|
||
|
|
||
|
log: function(txt) {
|
||
|
console.log(txt);
|
||
|
},
|
||
|
|
||
|
warn: function(txt) {
|
||
|
console.log(txt.yellow);
|
||
|
},
|
||
|
|
||
|
error: function(txt) {
|
||
|
console.log(txt.red);
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
module.exports = Logger;
|