We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46a8c59 commit c2be193Copy full SHA for c2be193
lib/logger.js
@@ -47,7 +47,7 @@ module.exports = {
47
messages.debug.push(message);
48
49
if (config.isVerbose) {
50
- log(`${chalk.bgBlack.white(' DEBUG ')} ${message}`);
+ log(`${chalk.bgBlack.white(' DEBUG ')} ${message}`);
51
}
52
},
53
@@ -60,13 +60,13 @@ module.exports = {
60
warning(message) {
61
messages.warning.push(message);
62
63
- log(`${chalk.bgYellow.black(' WARNING ')} ${chalk.yellow(message)}`);
+ log(`${chalk.bgYellow.black(' WARNING ')} ${chalk.yellow(message)}`);
64
65
66
deprecation(message) {
67
messages.deprecation.push(message);
68
69
- log(`${chalk.bgYellow.black('DEPRECATION')} ${chalk.yellow(message)}`);
+ log(`${chalk.bgYellow.black(' DEPRECATION ')} ${chalk.yellow(message)}`);
70
71
72
getMessages() {
0 commit comments