Skip to content

Commit

Permalink
Do not log env var values
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-tkachenko-datadog committed Feb 2, 2024
1 parent 4458e57 commit 4b2d111
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private <T> T getSetting(DatadogTracerJobProperty<?> tracerConfig, String envVar
try {
return parser.apply(envVariable);
} catch (Exception e) {
LOGGER.fine("Variable " + envVariableName + " has value " + envVariable + " which could not be parsed. " +
LOGGER.fine("Variable " + envVariableName + " has value which could not be parsed. " +
"Will use default value " + defaultValue);
}
}
Expand Down

0 comments on commit 4b2d111

Please sign in to comment.