You are here

function watchdog_cron in Drupal 5

Same name and namespace in other branches
  1. 4 modules/watchdog.module \watchdog_cron()

Implementation of hook_cron().

Remove expired log messages and flood control events.

File

modules/watchdog/watchdog.module, line 67
System monitoring and logging for administrators.

Code

function watchdog_cron() {
  db_query('DELETE FROM {watchdog} WHERE timestamp < %d', time() - variable_get('watchdog_clear', 604800));
  db_query('DELETE FROM {flood} WHERE timestamp < %d', time() - 3600);
}