diff --git a/includes/actions.inc b/includes/actions.inc index d0ed324a529d78d32203dff132858c9fb19deb95..34c450f46e5be3034cdb2177aa9cf53892dc505c 100644 --- a/includes/actions.inc +++ b/includes/actions.inc @@ -336,7 +336,7 @@ function actions_synchronize($actions_in_code = array(), $delete_orphans = FALSE else { $link = l(t('Remove orphaned actions'), 'admin/settings/actions/orphan'); $count = count($actions_in_db); - watchdog('actions', format_plural($count, 'One orphaned action (%orphans) exists in the actions table. !link', '@count orphaned actions (%orphans) exist in the actions table. !link'), array('@count' => $count, '%orphans' => $orphans, '!link' => $link), WATCHDOG_WARNING); + watchdog('actions', format_plural($count, 'One orphaned action (%orphans) exists in the actions table. !link', '@count orphaned actions (%orphans) exist in the actions table. !link'), array('@count' => $count, '%orphans' => $orphans, '!link' => $link), WATCHDOG_INFO); } } }