diff --git a/job_queue.module b/job_queue.module
index 5a9bed3..1e34ef8 100644
--- a/job_queue.module
+++ b/job_queue.module
@@ -106,7 +106,7 @@ function job_queue_dequeue() {
     $arguments = unserialize($job->arguments);
     call_user_func_array($job->function, $arguments);
     // Filter objects out of arguments
-    watchdog('job_queue', 'Ran queued job "!description"', array('!description' => t($job->description, array_filter($arguments, 'is_scalar'))));
+    watchdog('job_queue', 'Ran queued job "!description"', array('!description' => $job->description));
   }
   else {
     watchdog('job_queue', 'Failed to run queued job "!description" because the function %function is not defined.', array('!description' => $job->description, '%function' => $job->function), WATCHDOG_ERROR);
@@ -149,7 +149,7 @@ function job_queue_list() {
       // Filter objects out of arguments
       $rows[] = array(
         format_date($job->created),
-        t($job->description, array_filter(unserialize($job->arguments), 'is_scalar')),
+        $job->description,
       );
     }
     $output .= theme('table', $header, $rows);
