Skip to content

Commit

Permalink
Merge pull request #1129 from soot-oss/tooManyLogs
Browse files Browse the repository at this point in the history
Too damn many logs...
  • Loading branch information
stschott authored Nov 6, 2024
2 parents 1cde415 + 2aee63d commit 9ffc0fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ protected Set<Vertex> findAncestors(ClassType type) {
Graph<Vertex, Edge> graph = lazyScanResult.get().graph;
Vertex vertex = lazyScanResult.get().typeToVertex.get(type);
if (vertex == null) {
logger.warn("Could not find {} in this hierarchy!", type.toString());
logger.debug("Could not find {} in this hierarchy!", type.toString());
return Collections.emptySet();
}
Set<Vertex> ancestors = new HashSet<>();
Expand Down

0 comments on commit 9ffc0fd

Please sign in to comment.