Reduce unnecessary logs 49/232549/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Wed, 6 May 2020 08:07:20 +0000 (17:07 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 6 May 2020 08:07:20 +0000 (17:07 +0900)
Change-Id: I60bdbb3b2058cc321fdcce509b6e6352dd69162b
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
receiver/src/message.cpp

index e1c4689..6e06820 100644 (file)
@@ -29,8 +29,6 @@ bool send_message(const char *cmd, const char *data)
     int ret;
     bool found = false;
 
-    LOGD("command: %s, data: %s", cmd, data);
-
     bundle *b = bundle_create();
     bundle_add_str(b, "command", cmd);
     if (data)
@@ -63,7 +61,6 @@ bool send_message(const char *cmd, const char *data)
     }
     else
     {
-        LOGD("Succeed to send message through event publish");
         result = true;
     }