Skip to content

Commit

Permalink
configure logging via env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Dec 12, 2018
1 parent 480bf9e commit 825fee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/groovy/nebula/test/BaseIntegrationSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ abstract class BaseIntegrationSpec extends Specification {
if(!levelFromEnv) {
return logLevel
}
return LogLevel.valueOf(levelFromEnv)
return LogLevel.valueOf(levelFromEnv.toUpperCase())
}

/* Setup */
Expand Down

0 comments on commit 825fee0

Please sign in to comment.