Skip to content

Commit f50dd76

Browse files
author
Chris Barber
authored
Revert "fix: gradle warning color"
1 parent 4f62f41 commit f50dd76

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

lib/logger.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,6 @@ consoul.log = function (level, msg, meta, callback) {
136136
this.colorize || (msg = msg.stripColors);
137137

138138
if (this.colorize) {
139-
140-
// move gradle warnings into warn level instead of error
141-
if (msg.includes('[GRADLE] Warning:')) {
142-
level = 'warn';
143-
}
144-
145139
if (level === 'warn') {
146140
msg = msg.stripColors.yellow;
147141
} else if (level === 'error') {

0 commit comments

Comments
 (0)