public function UltimateCronLogger::unCatchMessages in Ultimate Cron 7.2
End message capturing.
Effectively disables the shutdown function for the given log entry.
Parameters
UltimateCronLogEntry $log_entry: The log entry.
1 call to UltimateCronLogger::unCatchMessages()
- UltimateCronLogger::catchMessagesShutdown in ./
ultimate_cron.plugin.inc - PHP shutdown function callback.
File
- ./
ultimate_cron.plugin.inc, line 1230 - Plugin framework for Ultimate Cron.
Class
- UltimateCronLogger
- Abstract class for Ultimate Cron loggers.
Code
public function unCatchMessages($log_entry) {
$class = get_class($this);
unset($class::$log_entries[$log_entry->lid]);
}