private void addLoggerNames()

in src/main/java/org/apache/sling/tracer/internal/JSONRecording.java [194:203]


    private void addLoggerNames(JSONWriter jw) throws IOException {
        List<String> sortedNames = new ArrayList<String>(loggerNames);
        Collections.sort(sortedNames);
        jw.key("loggerNames");
        jw.array();
        for (String o : sortedNames) {
            jw.value(o);
        }
        jw.endArray();
    }