use of lucee.runtime.debug.Debugger in project Lucee by lucee.
the class Admin method doAddDump.
private void doAddDump() throws ApplicationException {
Debugger debugger = pageContext.getDebugger();
PageSource ps = pageContext.getCurrentTemplatePageSource();
if (ps != null)
debugger.addDump(ps, getString("admin", action, "dump", true));
}
Aggregations