Skip to content

Commit

Permalink
ref(15): Start testing wild integration with Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanjerome committed Aug 18, 2023
1 parent 9529592 commit 3efe33c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vars/logger.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ private void logger(level, message) {
def LOG_LEVEL = 'INFO'

// Global log colorization enabled flag
def colorization = System.getenv('LOGGER_COLORIZED_ENABLED')
def env = new java.lang.ProcessEnvironment()
def colorization = env.getenv('LOGGER_COLORIZED_ENABLED')

if (LOG_LEVELS.indexOf(level) <= LOG_LEVELS.indexOf(LOG_LEVEL)) {
def color = COLORS[level]
Expand Down

0 comments on commit 3efe33c

Please sign in to comment.