summaryrefslogtreecommitdiff
path: root/includes/actions.inc
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-09-30 13:05:03 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-09-30 13:05:03 -0700
commitbf951e14ad3bc0f8e3af5ac58480d7a43c70550a (patch)
tree1dd7a344591e8effa6a4e53fd44096615851a3ca /includes/actions.inc
parent246f5aec18b15893e4ab1c88574ac60af145401e (diff)
downloadbrdo-bf951e14ad3bc0f8e3af5ac58480d7a43c70550a.tar.gz
brdo-bf951e14ad3bc0f8e3af5ac58480d7a43c70550a.tar.bz2
Issue #1278160 by tim.plunkett: Lower the logging severity level of 'orphaned actions'.
Diffstat (limited to 'includes/actions.inc')
-rw-r--r--includes/actions.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/actions.inc b/includes/actions.inc
index c2fd4d96c..760de8300 100644
--- a/includes/actions.inc
+++ b/includes/actions.inc
@@ -311,7 +311,7 @@ function actions_synchronize($delete_orphans = FALSE) {
$link = l(t('Remove orphaned actions'), 'admin/config/system/actions/orphan');
$count = count($actions_in_db);
$orphans = implode(', ', $orphaned);
- watchdog('actions', '@count orphaned actions (%orphans) exist in the actions table. !link', array('@count' => $count, '%orphans' => $orphans, '!link' => $link), WATCHDOG_WARNING);
+ watchdog('actions', '@count orphaned actions (%orphans) exist in the actions table. !link', array('@count' => $count, '%orphans' => $orphans, '!link' => $link), WATCHDOG_INFO);
}
}
}