public synchronized JSONRecording get()

in src/main/java/org/apache/sling/tracer/internal/TracerLogServlet.java [121:130]


        public synchronized JSONRecording get(final String requestId) {
            checkCache();
            final Entry entry = this.cache.get(requestId);
            if (entry != null) {
                entry.lastAccessed = System.currentTimeMillis();
                cache.put(requestId, entry);
                return entry.recording;
            }
            return null;
        }