Skip to content

Commit

Permalink
Merge pull request #823 from kuisathaverat/fix/change_log_level
Browse files Browse the repository at this point in the history
fix: change log level message
  • Loading branch information
kuisathaverat authored Mar 18, 2024
2 parents f3ea137 + 82e3e1b commit dcdb175
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void addEnvironmentVariables(@NonNull Run run, @NonNull EnvVars envs, @No
}
MonitoringAction monitoringAction = run.getAction(MonitoringAction.class);
if (monitoringAction == null) {
LOGGER.log(Level.INFO, () -> "MonitoringAction NOT found on run " + run);
LOGGER.log(Level.FINE, () -> "MonitoringAction NOT found on run " + run);

Check warning on line 55 in src/main/java/io/jenkins/plugins/opentelemetry/job/OtelEnvironmentContributorService.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered line

Line 55 is not covered by tests
} else {
// Add visualization link as environment variables to provide visualization links in notifications (to GitHub, slack messages...)
for (MonitoringAction.ObservabilityBackendLink link : monitoringAction.getLinks()) {
Expand Down

0 comments on commit dcdb175

Please sign in to comment.