From 71d50e28d60d8ad1d9601435f91bab63bdedf93c Mon Sep 17 00:00:00 2001 From: catch Date: Wed, 28 Sep 2011 01:51:14 +0900 Subject: [PATCH] Issue #1278160 by tim.plunkett: Lower the logging severity level of 'orphaned actions'. --- includes/actions.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/actions.inc b/includes/actions.inc index c2fd4d96c7a..760de8300b3 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); } } }