Skip to content

Commit

Permalink
Change log level to debug in ConnectorDatadogSupportHelper (#5803)
Browse files Browse the repository at this point in the history
  • Loading branch information
prateekmukhedkar committed Apr 17, 2023
1 parent ea2b8b9 commit bc02564
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void addServerNameAndVersionToEnvVars(final String imageNameAndVersion, f
if (imageNameVersionPair.isPresent()) {
envVars.add(new EnvVar(DD_SERVICE, imageNameVersionPair.get().left, null));
envVars.add(new EnvVar(DD_VERSION, imageNameVersionPair.get().right.serialize(), null));
LOGGER.info("Added service name {} and version {} to env vars for Datadog", imageNameVersionPair.get().left,
LOGGER.debug("Added service name {} and version {} to env vars for Datadog", imageNameVersionPair.get().left,
imageNameVersionPair.get().right.serialize());
}
}
Expand Down

0 comments on commit bc02564

Please sign in to comment.