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;
}
Aggregations