Skip to content

Commit

Permalink
EGD-5267: Fix logging in EnvironmentVariablesUtils.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei-Luksha2 committed May 26, 2022
1 parent 8032f4f commit ef49e16
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ public static <T> T getEnvVarOrUseDefault(
final String envVarValue = System.getenv(envVarName);
if (envVarValue == null) {
log.info(
"Environment variable {} is not set. Will use the default {} ms value.",
"Environment variable {} is not set. Will use the default {} value.",
envVarName,
defaultValue
);
result = defaultValue;
} else {
log.info(
"ProcessingLoopInterval value read from {} environment variable is {} ms.",
"Environment variable {} is set to {}",
envVarName,
envVarValue
);
Expand Down

0 comments on commit ef49e16

Please sign in to comment.