When Did Drupal Cron Last Run?
Here’s a simple drush command to determine when Drupal cron (and node index cron) last ran:
1 |
drush ev 'print "Last cron: ". format_interval((time() - variable_get("cron_last", "")) , 2) . " ago\nLast node index cron: " . format_interval((time() - variable_get("node_cron_last", "")) , 2) . " ago\n";' |