You are here

function ultimate_cron_watchdog in Ultimate Cron 7.2

Same name and namespace in other branches
  1. 8 ultimate_cron.module \ultimate_cron_watchdog()
  2. 6 ultimate_cron.module \ultimate_cron_watchdog()
  3. 7 ultimate_cron.module \ultimate_cron_watchdog()

Implements hook_watchdog().

Capture watchdog messages and send them to the loggers.

File

./ultimate_cron.module, line 1045

Code

function ultimate_cron_watchdog(array $log_entry) {
  if (class_exists('UltimateCronLogger')) {
    UltimateCronLogger::hook_watchdog($log_entry);
  }
}