Skip to content

Commit 078c660

Browse files
tulirenjrhizor
andauthored
Update log message for empty env variable (#6115)
Co-authored-by: Jared Rhizor <[email protected]>
1 parent d0f2181 commit 078c660

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte-config/models/src/main/java/io/airbyte/config/EnvConfigs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ private <T> T getEnvOrDefault(final String key, final T defaultValue, final Func
424424
if (value != null && !value.isEmpty()) {
425425
return parser.apply(value);
426426
} else {
427-
LOGGER.info("{} not found or empty, defaulting to {}", key, isSecret ? "*****" : defaultValue);
427+
LOGGER.info("Using default value for environment variable {}: '{}'", key, isSecret ? "*****" : defaultValue);
428428
return defaultValue;
429429
}
430430
}

0 commit comments

Comments
 (0)