-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.js
72 lines (58 loc) · 1.53 KB
/
log.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* log.js
* Overwritten logging functions for ShareWhere.
* Now with more colors!
*/
var colors = require("colors/safe")
module.exports = {
error: function() {
var args = [];
for(var i = 0; i < arguments.length; i++) {
args.push(arguments[i]);
}
args[0] = colors.red.bold("[ERROR] " + args[0])
console.log.apply(this, args);
},
info: function() {
var args = [];
for(var i = 0; i < arguments.length; i++) {
args.push(arguments[i]);
}
args[0] = colors.white("[info] " + args[0])
console.log.apply(this, args);
},
endpoint: function(ip, verb, endpoint) {
console.log(colors.white.bold("[route %s] %s %s"), ip, verb, endpoint);
},
notice: function() {
var args = [];
for(var i = 0; i < arguments.length; i++) {
args.push(arguments[i]);
}
args[0] = colors.yellow.bold("[notice] " + args[0])
console.log.apply(this, args);
},
fail: function() {
var args = [];
for(var i = 0; i < arguments.length; i++) {
args.push(arguments[i]);
}
args[0] = colors.red(args[0])
console.log.apply(this, args);
},
success: function() {
var args = [];
for(var i = 0; i < arguments.length; i++) {
args.push(arguments[i]);
}
args[0] = colors.green(args[0])
console.log.apply(this, args);
},
debug: function() {
var args = [];
for(var i = 0; i < arguments.length; i++) {
args.push(arguments[i]);
}
args[0] = colors.yellow("[debug] " + args[0])
console.log.apply(this, args);
},
}