Interface DiagnosticReporter
-
public interface DiagnosticReporterImplement this interface to create a diagnostic reporter which will provide persistent writing of diagnostic information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwriteDiagnosticReport(Map<String,Object> diagnosticInfo)Write the diagnostic information.voidwriteDiagnosticReport(Map<String,Object> diagnosticInfo, Writer writer)Write the diagnostic information to the specifiedWriter.
-
-
-
Method Detail
-
writeDiagnosticReport
void writeDiagnosticReport(Map<String,Object> diagnosticInfo) throws Exception
Write the diagnostic information.- Parameters:
diagnosticInfo- the diagnostic information to write.- Throws:
Exception
-
writeDiagnosticReport
void writeDiagnosticReport(Map<String,Object> diagnosticInfo, Writer writer) throws Exception
Write the diagnostic information to the specifiedWriter.- Parameters:
diagnosticInfo- the diagnostic information to write.writer- the writer to output information- Throws:
Exception
-
-