Issue #1278160 by tim.plunkett: Lower the logging severity level of 'orphaned actions'.

8.0.x
catch 2011-09-28 01:51:14 +09:00
parent 17bdb61f96
commit 71d50e28d6
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}
}