Revert "item_updater: Add a log to indicate duplicate image upload."

The item_updater is called multiple times to createActivation
object when a new image is uploaded. This ends up producing a
log in the journal suggesting the image was already uploaded
even if the image didn't exist before.

Change-Id: Ied54ca39d2b837a0647c617287acae9bde565241
Signed-off-by: Saqib Khan <khansa@us.ibm.com>
diff --git a/item_updater.cpp b/item_updater.cpp
index 9e558ce..625147e 100644
--- a/item_updater.cpp
+++ b/item_updater.cpp
@@ -140,11 +140,6 @@
                                 purpose,
                                 filePath)));
     }
-    else
-    {
-        log<level::INFO>("Software Object with the same version already exists",
-                         entry("VERSION_ID=%s", versionId));
-    }
     return;
 }