-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
54 lines (44 loc) · 1.04 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
var chalk = require('chalk');
var MyModule = function(config){
var config = config || {};
// Use the "colorize" parameter/default to true
config.colorize = config.hasOwnProperty('colorize') ? config.colorize : true;
var log = function(str){
if (config.hasOwnProperty('prefix')){
return config.prefix + ': ' + str;
}
return str;
};
// Basic logging
this.log = function(msg){
console.log(log(msg));
};
// Basic information
this.info = function(msg){
msg = "[INFO] "+msg;
if (config.colorize){
console.log(chalk.blue(log(msg)));
} else {
console.log(log(msg));
}
};
// Warning
this.warn = function(msg){
msg = "[WARNING] "+msg;
if (config.colorize){
console.log(chalk.yellow.bold(log(msg)));
} else {
console.log(log(msg));
}
};
// Error
this.error = function(msg){
msg = "[ERROR] "+msg;
if (config.colorize){
console.log(chalk.red.bold(log(msg)));
} else {
console.log(log(msg));
}
};
};
module.exports = MyModule;