Skip to content

Commit 822b080

Browse files
authored
fix-2897
fix logging error
1 parent 4ffbd5c commit 822b080

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cxx-sensors/src/main/java/org/sonar/cxx/sensors/coverage/cobertura/CoberturaParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ private static void collectFileData(SMInputCursor clazz, CoverageMeasures builde
100100
noHits = Integer.parseInt(line.getAttrValue("hits"));
101101
} catch (NumberFormatException e) {
102102
LOG.warn(
103-
"CoverageParser: Truncating the actual number of hits to the maximum number supported by SonarQube, {}", e
103+
"CoverageParser: Truncating the actual number of hits to the maximum number supported by SonarQube", e
104104
);
105105
noHits = Integer.MAX_VALUE;
106106
}

0 commit comments

Comments
 (0)