diff --git a/src/fuzz_introspector/datatypes/project_profile.py b/src/fuzz_introspector/datatypes/project_profile.py index 99a00150b..50c26b267 100644 --- a/src/fuzz_introspector/datatypes/project_profile.py +++ b/src/fuzz_introspector/datatypes/project_profile.py @@ -132,7 +132,10 @@ def __init__(self, profiles: List[fuzzer_profile.FuzzerProfile]): # LLVMFuzzerTestOneInput. In this case we just gracefully # continue and ignore issues. if ln1 != ln2: - logger.error("Line numbers are different in the same function") + logger.info( + f"Line numbers are different in the same function: " + f"{func_name}:{ln1}:{ln2}, ignoring" + ) continue new_line_counts.append((ln1, max(ht1, ht2))) self.runtime_coverage.covmap[func_name] = new_line_counts