--- a/plugins/FeedsProcessor.inc	2015-03-18 20:05:58.000000000 +0530
+++ b/plugins/FeedsProcessor.inc	2015-03-18 20:07:42.000000000 +0530
@@ -197,6 +197,7 @@
       // Do not proceed if the item exists, has not changed, and we're not
       // forcing the update.
       if ($entity_id && !$changed && !$force_update) {
+		$state->skipped++;
         continue;
       }
 
@@ -310,6 +311,16 @@
         'level' => WATCHDOG_ERROR,
       );
     }
+    if ($state->skipped) {
+      $messages[] = array(
+       'message' => format_plural(
+          $state->skipped,
+          'Skipped @number @entity.',
+          'Skipped @number @entities.',
+          array('@number' => $state->skipped) + $tokens
+        ),
+      );
+    }
     if (empty($messages)) {
       $messages[] = array(
         'message' => t('There are no new @entities.', array('@entities' => strtolower($info['label plural']))),
