Skip to content

Commit 99b6311

Browse files
Lower log level for duplicate repo index keys warning (#7814)
1 parent 179c62a commit 99b6311

File tree

1 file changed

+1
-1
lines changed
  • dd-java-agent/agent-ci-visibility/src/main/java/datadog/trace/civisibility/source/index

1 file changed

+1
-1
lines changed

dd-java-agent/agent-ci-visibility/src/main/java/datadog/trace/civisibility/source/index/RepoIndexBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) {
170170

171171
String existingPath = trieKeyToPath.put(key, file.toString());
172172
if (existingPath != null) {
173-
log.warn("Duplicate repo index key: {} - {}", existingPath, file);
173+
log.debug("Duplicate repo index key: {} - {}", existingPath, file);
174174
duplicateTrieKeys.add(key);
175175
}
176176
}

0 commit comments

Comments
 (0)