diff --git includes/actions.inc includes/actions.inc
index fa1f7d3..0daf8e8 100644
--- includes/actions.inc
+++ includes/actions.inc
@@ -312,7 +312,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', 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', '@count orphaned actions (%orphans) exist in the actions table. !link', array('@count' => $count, '%orphans' => $orphans, '!link' => $link), WATCHDOG_WARNING);
     }
   }
 }
diff --git modules/tracker/tracker.module modules/tracker/tracker.module
index 4a2df61..f75354e 100644
--- modules/tracker/tracker.module
+++ modules/tracker/tracker.module
@@ -139,7 +139,7 @@ function tracker_cron() {
       // Prepare a starting point for the next run.
       variable_set('tracker_index_nid', $last_nid - 1);
 
-      watchdog('tracker', t('Indexed %count content items for tracking.', array('%count' => $count)));
+      watchdog('tracker', 'Indexed %count content items for tracking.', array('%count' => $count));
     }
     else {
       // If all nodes have been indexed, set to zero to skip future cron runs.
