Search in sources :

Example 1 with DebuggerPool

use of lucee.runtime.debug.DebuggerPool in project Lucee by lucee.

the class ConfigWebImpl method getDebuggerPool.

public DebuggerPool getDebuggerPool() {
    if (debuggerPool == null) {
        Resource dir = getConfigDir().getRealResource("debugger");
        dir.mkdirs();
        debuggerPool = new DebuggerPool(dir);
    }
    return debuggerPool;
}
Also used : DebuggerPool(lucee.runtime.debug.DebuggerPool) Resource(lucee.commons.io.res.Resource)

Aggregations

Resource (lucee.commons.io.res.Resource)1 DebuggerPool (lucee.runtime.debug.DebuggerPool)1