in dubbo-error-code-inspector/src/main/java/org/apache/dubbo/errorcode/reporter/impl/FileOutputReporter.java [33:40]
public void report(InspectionResult inspectionResult) {
try (PrintStream printStream = new PrintStream(Files.newOutputStream(Paths.get(System.getProperty("user.dir"), "error-inspection-result.txt")))) {
StringifyUtil.outputStringifyText(inspectionResult, printStream);
} catch (IOException e) {
throw new RuntimeException(e);
}
}