Skip to content

Commit 722c8f7

Browse files
authored
Set unexpected IAST exceptions to debug log level (#8044)
1 parent cdee1c8 commit 722c8f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal-api/src/main/java/datadog/trace/api/iast/IastModule.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public interface IastModule {
1212
Logger LOG = LoggerFactory.getLogger(IastModule.class);
1313

1414
default void onUnexpectedException(final String message, final Throwable error) {
15-
LOG.warn(message, error);
15+
LOG.debug(message, error);
1616
}
1717

1818
@Retention(RetentionPolicy.RUNTIME)

0 commit comments

Comments
 (0)