Skip to content

Commit

Permalink
Set unexpected IAST exceptions to debug log level (#8044)
Browse files Browse the repository at this point in the history
  • Loading branch information
smola authored Dec 2, 2024
1 parent cdee1c8 commit 722c8f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public interface IastModule {
Logger LOG = LoggerFactory.getLogger(IastModule.class);

default void onUnexpectedException(final String message, final Throwable error) {
LOG.warn(message, error);
LOG.debug(message, error);
}

@Retention(RetentionPolicy.RUNTIME)
Expand Down

0 comments on commit 722c8f7

Please sign in to comment.