Skip to content

Commit

Permalink
Changed logging level to reduce noise
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed Jul 9, 2020
1 parent 2decb15 commit d3c9952
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -274,7 +274,7 @@ public final void setValue(final String aValue) {
super.setValue(aValue);
duration = null;
} catch (DateTimeParseException pe) {
LoggerFactory.getLogger(Trigger.class).warn(String.format("Not a valid DATE-TIME value: %s", aValue));
LoggerFactory.getLogger(Trigger.class).debug(String.format("Not a valid DATE-TIME value: %s", aValue));
duration = TemporalAmountAdapter.parse(aValue);
super.setDate(null);
}
Expand Down

0 comments on commit d3c9952

Please sign in to comment.