private void addRequestProgressLogs()

in src/main/java/org/apache/sling/tracer/internal/JSONRecording.java [205:219]


    private void addRequestProgressLogs(JSONWriter jw) throws IOException {
        if (tracker != null) {
            jw.key("requestProgressLogs");
            jw.array();
            Iterator<String> it = tracker.getMessages();
            //Per docs iterator can be null
            while (it != null && it.hasNext()) {
                String entry = it.next();
                if (entry != null){
                    jw.value(entry.trim());
                }
            }
            jw.endArray();
        }
    }