public TracerLogServlet()

in src/main/java/org/apache/sling/tracer/internal/TracerLogServlet.java [69:78]


    public TracerLogServlet(BundleContext context, int cacheSizeInMB, long cacheDurationInSecs,
                            boolean compressionEnabled, boolean gzipResponse) {
        super(LABEL, "Sling Tracer", "Sling", null);
        this.compressRecording = compressionEnabled;
        this.cacheDurationInSecs = cacheDurationInSecs;
        this.cacheSizeInMB = cacheSizeInMB;
        this.gzipResponse = compressionEnabled && gzipResponse;
        this.cache = new BoundedCache(cacheSizeInMB, cacheDurationInSecs);
        register(context);
    }