From: jusung son Date: Fri, 1 Feb 2019 01:46:40 +0000 (+0900) Subject: Add a log for debugging X-Git-Tag: submit/tizen/20190201.020008~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4651d19bcc8dfb988b8fbd44756edabc678e2642;p=platform%2Fcore%2Fappfw%2Fmessage-port.git Add a log for debugging Change-Id: Iaff0c0a1786dcf8e8ada805288a76a491a55cba0 Signed-off-by: jusung son --- diff --git a/src/message_port_local.c b/src/message_port_local.c index a4d83cb..6de9c79 100755 --- a/src/message_port_local.c +++ b/src/message_port_local.c @@ -1216,6 +1216,9 @@ int remove_registration_event_cb(int watcher_id) if (registered_cb_info == NULL) return MESSAGE_PORT_ERROR_INVALID_PARAMETER; + _LOGI("unwatch_remote_port [%s : %s : %d] ", registered_cb_info->remote_app_id, + registered_cb_info->remote_port, watcher_id); + remove_result = g_hash_table_remove(__registered_callback_info_hash, GINT_TO_POINTER(watcher_id)); if (!remove_result) return MESSAGE_PORT_ERROR_IO_ERROR;