-
Notifications
You must be signed in to change notification settings - Fork 3
/
log.js
127 lines (104 loc) · 1.93 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
const
process = require('process'),
core = require('@actions/core'),
chalk = require('chalk'),
arg = require('arg');
class AbstractLogger {
/**
* Logs info
* @param {...any} args
*/
info(...args) {}
/**
* Logs an error
* @param {...any} args
*/
error(...args) {}
/**
* Logs a warning
* @param {...any} args
*/
warning(...args) {}
/**
* Sets a process as failed and logs the specified error message
* @param {...any} args
*/
setFailed(...args) {}
}
class Logger extends AbstractLogger {
/**
* Current log engine
*/
#engine;
constructor() {
super();
const logger = arg({'--logger': String}, {permissive: true})['--logger'] || 'github';
switch (logger) {
case 'github': {
this.#engine = new GithubActionLogger();
break;
}
case 'cli': {
this.#engine = new CLILogger();
break;
}
default: {
this.#engine = new GithubActionLogger();
}
}
}
/** @override */
info(...args) {
this.#engine.info(...args);
}
/** @override */
error(...args) {
this.#engine.error(...args);
}
/** @override */
warning(...args) {
this.#engine.warning(...args);
}
/** @override */
setFailed(...args) {
this.#engine.setFailed(...args);
}
}
class GithubActionLogger extends AbstractLogger {
/** @override */
info(...args) {
core.info(...args);
}
/** @override */
error(...args) {
core.error(...args);
}
/** @override */
warning(...args) {
core.warning(...args);
}
/** @override */
setFailed(...args) {
core.setFailed(...args);
}
}
class CLILogger extends AbstractLogger {
/** @override */
info(...args) {
console.log(chalk.blueBright(...args));
}
/** @override */
error(...args) {
console.log(chalk.redBright(...args));
}
/** @override */
warning(...args) {
console.log(chalk.yellowBright(...args));
}
/** @override */
setFailed(...args) {
console.log(chalk.redBright(...args));
process.exitCode = 1;
}
}
module.exports = new Logger();