Fix resource delete event issue

This change corrects the event type when a resource is
removed.

Tested By:
Tested in the client side - resource removed events are received

Change-Id: Ib7b017c58401b9be674d330bc476d8c30d3721d6
Signed-off-by: Asmitha Karunanithi <asmitk01@in.ibm.com>
diff --git a/redfish-core/include/resource_messages.hpp b/redfish-core/include/resource_messages.hpp
index 309b293..7a71151 100644
--- a/redfish-core/include/resource_messages.hpp
+++ b/redfish-core/include/resource_messages.hpp
@@ -38,7 +38,7 @@
 inline nlohmann::json resourceRemoved()
 {
     return getLogResourceEvent(
-        redfish::registries::resource_event::Index::resourceCreated, {});
+        redfish::registries::resource_event::Index::resourceRemoved, {});
 }
 
 } // namespace messages