Skip to content

Commit fc84de9

Browse files
Remove error log when source path resolution fails on isModified check (#8663)
1 parent 063a99c commit fc84de9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dd-java-agent/agent-ci-visibility/src/main/java/datadog/trace/civisibility/test/ExecutionStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ public boolean isModified(@Nonnull TestSourceData testSourceData) {
210210
.contains(sourcePath, lines.getStartLineNumber(), lines.getEndLineNumber());
211211

212212
} catch (Exception e) {
213-
LOGGER.error("Could not determine if {} was modified, assuming false", testSourceData, e);
213+
LOGGER.debug("Could not determine if {} was modified, assuming false", testSourceData, e);
214214
return false;
215215
}
216216
}

0 commit comments

Comments
 (0)