Page 1 of 1

Timeout function && Breakpoints

PostPosted: August 10th, 2016, 1:50 pm
by Gernot
Lets say i have a timeout function

$log_time = time();

// Hers my Php Tools Breakpoint

$sec = (time() - $log_time);

if($sec > 30)
{
// ... log something in errorlog
}

--------------

Is there a way to do not log in errorlog if I have set a breakoint via Php Tools?

Thanks