Skip to content

Commit

Permalink
ref(17): Add more configuration on workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanjerome committed Aug 31, 2023
1 parent 044bfb5 commit 2545a09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/logger.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private void logger(level, message) {
}
} catch(Throwable ex) { }

if (LOG_LEVELS.indexOf(level) <= LOG_LEVELS.indexOf(LOG_LEVEL)) {
if (LOG_LEVELS.indexOf(level) <= LOG_LEVELS.indexOf(${env.LOG_LEVEL})) {
def color = COLORS[level]
def resetColor = "\u001B[0m"
def logMessage = colored_xterm ? "${color}${message}${resetColor}" : "${message}"
Expand Down

0 comments on commit 2545a09

Please sign in to comment.