summaryrefslogtreecommitdiff
path: root/cron.php
diff options
context:
space:
mode:
Diffstat (limited to 'cron.php')
-rw-r--r--cron.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/cron.php b/cron.php
index 01e10eb3b..889ea00d4 100644
--- a/cron.php
+++ b/cron.php
@@ -16,7 +16,7 @@ if (!ini_get('safe_mode')) {
// Check if the last cron run completed
if (variable_get('cron_busy', false)) {
- watchdog('warning', t('Last cron run did not complete.'));
+ watchdog('cron', t('Last cron run did not complete.'));
}
else {
variable_set('cron_busy', true);
@@ -27,6 +27,6 @@ module_invoke_all('cron');
// Clean up
variable_set('cron_busy', false);
-watchdog('regular', t('Cron run completed'));
+watchdog('cron', t('Cron run completed'));
?>