Index: plugins/FeedsFeedNodeProcessor.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feeds/plugins/FeedsFeedNodeProcessor.inc,v
retrieving revision 1.13
diff -u -r1.13 FeedsFeedNodeProcessor.inc
--- plugins/FeedsFeedNodeProcessor.inc	13 Jul 2010 19:32:06 -0000	1.13
+++ plugins/FeedsFeedNodeProcessor.inc	22 Jul 2010 08:10:16 -0000
@@ -44,15 +44,18 @@
     }
 
     // Set messages.
+    $message = '';
     if ($batch->created) {
-      drupal_set_message(format_plural($batch->created, 'Created @number @type node.', 'Created @number @type nodes.', array('@number' => $batch->created, '@type' => $this->config['content_type'])));
+      $message = format_plural($batch->created, 'Created @number @type node.', 'Created @number @type nodes.', array('@number' => $batch->created, '@type' => $this->config['content_type']));
     }
     elseif ($batch->updated) {
-      drupal_set_message(format_plural($batch->updated, 'Updated @number @type node.', 'Updated @number @type nodes.', array('@number' => $batch->updated, '@type' => $this->config['content_type'])));
+      $message = format_plural($batch->updated, 'Updated @number @type node.', 'Updated @number @type nodes.', array('@number' => $batch->updated, '@type' => $this->config['content_type']));
     }
     else {
-      drupal_set_message(t('There is no new content.'));
+      $message = t('There is no new content.');
     }
+    drupal_set_message($message);
+    watchdog('feeds', $message, array(), WATCHDOG_INFO, l('feed',"node/$source->feed_nid"));
 
     return FEEDS_BATCH_COMPLETE;
   }
Index: plugins/FeedsNodeProcessor.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feeds/plugins/FeedsNodeProcessor.inc,v
retrieving revision 1.45
diff -u -r1.45 FeedsNodeProcessor.inc
--- plugins/FeedsNodeProcessor.inc	18 Jul 2010 18:33:43 -0000	1.45
+++ plugins/FeedsNodeProcessor.inc	22 Jul 2010 08:10:17 -0000
@@ -65,15 +65,18 @@
     }
 
     // Set messages.
+    $message = '';
     if ($batch->created) {
-      drupal_set_message(format_plural($batch->created, 'Created @number @type node.', 'Created @number @type nodes.', array('@number' => $batch->created, '@type' => node_get_types('name', $this->config['content_type']))));
+      $message = format_plural($batch->created, 'Created @number @type node.', 'Created @number @type nodes.', array('@number' => $batch->created, '@type' => node_get_types('name', $this->config['content_type'])));
     }
     elseif ($batch->updated) {
-      drupal_set_message(format_plural($batch->updated, 'Updated @number @type node.', 'Updated @number @type nodes.', array('@number' => $batch->updated, '@type' => node_get_types('name', $this->config['content_type']))));
+      $message= format_plural($batch->updated, 'Updated @number @type node.', 'Updated @number @type nodes.', array('@number' => $batch->updated, '@type' => node_get_types('name', $this->config['content_type'])));
     }
     else {
-      drupal_set_message(t('There is no new content.'));
+      $message = t('There is no new content.');
     }
+    drupal_set_message($message);
+    watchdog('feeds', $message, array(), WATCHDOG_INFO, l('feed',"node/$source->feed_nid"));
 
     return FEEDS_BATCH_COMPLETE;
   }
