in src/main/java/org/apache/sling/tracer/internal/JSONRecording.java [148:164]
public void done() {
try {
if (json == null) {
json = toJSON();
//Let the tracker and other references go to
//not occupy memory
tracker = null;
queries.clear();
logs.clear();
}
} catch (UnsupportedEncodingException e) {
log.warn("Error occurred while converting the log data for request {} to JSON", requestId, e);
} catch (IOException e) {
log.warn("Error occurred while converting the log data for request {} to JSON", requestId, e);
}
}