-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.js
56 lines (53 loc) · 1.55 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
const colors = {
reset: "\x1b[0m",
bright: "\x1b[1m",
dim: "\x1b[2m",
underscore: "\x1b[4m",
blink: "\x1b[5m",
reverse: "\x1b[7m",
hidden: "\x1b[8m",
fg: {
black: "\x1b[30m",
red: "\x1b[31m",
green: "\x1b[32m",
yellow: "\x1b[33m",
blue: "\x1b[34m",
magenta: "\x1b[35m",
cyan: "\x1b[36m",
white: "\x1b[37m",
gray: "\x1b[90m",
crimson: "\x1b[38m" // Scarlet
},
bg: {
black: "\x1b[40m",
red: "\x1b[41m",
green: "\x1b[42m",
yellow: "\x1b[43m",
blue: "\x1b[44m",
magenta: "\x1b[45m",
cyan: "\x1b[46m",
white: "\x1b[47m",
gray: "\x1b[100m",
crimson: "\x1b[48m"
}
};
module.exports = {
info: (message) => console.log(colors.fg.cyan, message, colors.reset),
error: (message) => console.log(colors.bg.red, message, colors.reset),
warning: (message) => console.log(colors.bg.yellow, message, colors.reset),
sections: (items, len) => {
for(let i = 0; i < items.length; i++) {
var item = items[i];
process.stdout.write(item.key + " ".repeat(len - item.key.length));
console.log(colors.fg.cyan, item.value, colors.reset)
}
},
passed: (msg) => {
process.stdout.write(colors.fg.green + "Passed: " + colors.reset + msg);
console.log(colors.reset);
},
failed: (msg) => {
process.stdout.write(colors.fg.red + "Failed: " + colors.reset + msg);
console.log(colors.reset);
}
};