Skip to content

Commit

Permalink
chore(core): reduce log level of property validation
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Jan 15, 2025
1 parent 52aba32 commit 708c112
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ private void validate() {
validate(task);
} else if (trigger != null) {
validate(trigger);
} else {
// this should never happen, but if it happens, we may lower to debug
log.warn("Unable to do validation: no task or trigger found");
} else if (log.isTraceEnabled()) {
// this should never happen, but it happens a lot on unit test
log.trace("Unable to do validation: no task or trigger found");
}
}

Expand Down

0 comments on commit 708c112

Please sign in to comment.