Skip to content

Commit

Permalink
Merge pull request #24 from jenkinsci/SEI/bugs/SEI-7423
Browse files Browse the repository at this point in the history
fix: [SEI-7423]: Lowe log level for Unknown trigger type error
  • Loading branch information
ashish-levelops authored Oct 17, 2024
2 parents a07a88d + 06cdd0e commit df8aa51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
</profiles>

<properties>
<revision>1.0.33</revision>
<revision>1.0.34</revision>
<!-- <changelist>999999-SNAPSHOT</changelist> -->
<changelist></changelist>
<product.build.sourceEncoding>UTF-8</product.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ private JobTrigger buildTriggerChain(final Object cause, File hudsonHome) {
triggerId = "SCMTrigger";
break;
default:
LOGGER.severe("Using unknown trigger id for unsupported trigger type: " + triggerType);
LOGGER.warning("Using unknown trigger id for unsupported trigger type: " + triggerType);

Check warning on line 321 in src/main/java/io/jenkins/plugins/propelo/commons/service/JobRunParserService.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered line

Line 321 is not covered by tests
triggerId = "unknown";
}
return new JobTrigger(triggerId, triggerType);
Expand Down

0 comments on commit df8aa51

Please sign in to comment.