From: Sunwook Bae Date: Tue, 11 Jun 2013 05:35:04 +0000 (+0900) Subject: Change LOGD to LOGI X-Git-Tag: accepted/tizen/20130912.102759~1^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c0562c2dc210e20b89a3d9b49f4cbbc463294891;p=platform%2Fcore%2Fappfw%2Fmessage-port.git Change LOGD to LOGI Change-Id: I77f789a543cd94a1af98b61ceff79840c6b766f4 Signed-off-by: Sunwook Bae --- diff --git a/src/IpcClient.cpp b/src/IpcClient.cpp index 6d5221f..90e0c48 100644 --- a/src/IpcClient.cpp +++ b/src/IpcClient.cpp @@ -179,7 +179,7 @@ IpcClient::MakeConnection(bool forReverse) ret = connect(client, (struct sockaddr*) &server, serverLen); if (ret < 0 && errno == ENOENT) { - _LOGD("The server is not ready. %d", retry); + _LOGI("The server is not ready. %d", retry); usleep(1000 * 1000); @@ -319,7 +319,7 @@ IpcClient::HandleReceivedMessage(GIOChannel* source, GIOCondition condition) if (condition & G_IO_HUP) { - _LOGD("G_IO_HUP, the connection is closed."); + _LOGI("G_IO_HUP, the connection is closed."); g_source_destroy(__pReverseSource); g_source_unref(__pReverseSource); @@ -347,11 +347,11 @@ IpcClient::HandleReceivedMessage(GIOChannel* source, GIOCondition condition) { if (status == G_IO_STATUS_EOF) { - _LOGD("G_IO_STATUS_EOF, the connection is closed."); + _LOGI("G_IO_STATUS_EOF, the connection is closed."); } else { - _LOGD("G_IO_STATUS_ERROR, the connection is closed."); + _LOGI("G_IO_STATUS_ERROR, the connection is closed."); } pGError = NULL; diff --git a/src/MessagePortProxy.cpp b/src/MessagePortProxy.cpp index 69977fd..50b5f77 100644 --- a/src/MessagePortProxy.cpp +++ b/src/MessagePortProxy.cpp @@ -120,7 +120,7 @@ MessagePortProxy::OnIpcResponseReceived(IpcClient& client, const IPC::Message& m int MessagePortProxy::RegisterMessagePort(const string& localPort, bool isTrusted, messageport_message_cb callback) { - _LOGD("Register a message port : [%s:%s]", __appId.c_str(), localPort.c_str()); + _LOGI("Register a message port : [%s:%s]", __appId.c_str(), localPort.c_str()); int id = 0; @@ -208,7 +208,7 @@ MessagePortProxy::RegisterMessagePort(const string& localPort, bool isTrusted, int MessagePortProxy::CheckRemotePort(const string& remoteAppId, const string& remotePort, bool isTrusted, bool *exist) { - _LOGD("Check a remote port : [%s:%s]", remoteAppId.c_str(), remotePort.c_str()); + _LOGI("Check a remote port : [%s:%s]", remoteAppId.c_str(), remotePort.c_str()); bundle *b = bundle_create(); @@ -263,7 +263,7 @@ MessagePortProxy::CheckRemotePort(const string& remoteAppId, const string& remot } else if (return_value == MESSAGEPORT_ERROR_CERTIFICATE_NOT_MATCH) { - _LOGE("The remote application (%s) is not signed with the same certificate", remoteAppId.c_str()); + _LOGI("The remote application (%s) is not signed with the same certificate", remoteAppId.c_str()); *exist = true; return MESSAGEPORT_ERROR_CERTIFICATE_NOT_MATCH; @@ -282,7 +282,7 @@ MessagePortProxy::CheckRemotePort(const string& remoteAppId, const string& remot int MessagePortProxy::SendMessage(const string& remoteAppId, const string& remotePort, bool trustedMessage, bundle* data) { - _LOGD("Send a message to : [%s:%s]", remoteAppId.c_str(), remotePort.c_str()); + _LOGI("Send a message to : [%s:%s]", remoteAppId.c_str(), remotePort.c_str()); int ret = 0; @@ -319,7 +319,7 @@ MessagePortProxy::SendMessage(const string& remoteAppId, const string& remotePor int MessagePortProxy::SendMessage(const string& localPort, bool trustedPort, const string& remoteAppId, const string& remotePort, bool trustedMessage, bundle* data) { - _LOGD("Send a bidirectional message from [%s:%s] to [%s:%s]", __appId.c_str(), localPort.c_str(), remoteAppId.c_str(), remotePort.c_str()); + _LOGI("Send a bidirectional message from [%s:%s] to [%s:%s]", __appId.c_str(), localPort.c_str(), remoteAppId.c_str(), remotePort.c_str()); int ret = 0; @@ -533,7 +533,7 @@ MessagePortProxy::IsLocalPortRegisted(const string& localPort, bool trusted, int } else { - _LOGD("MessagePort name is already registered."); + _LOGI("MessagePort name is already registered."); for (map::iterator it = __ids.begin(); it != __ids.end(); ++it) { if (localPort.compare(it->second) == 0) @@ -553,7 +553,7 @@ MessagePortProxy::IsLocalPortRegisted(const string& localPort, bool trusted, int } else { - _LOGD("MessagePort name is already registered."); + _LOGI("MessagePort name is already registered."); for (map::iterator it = __trustedIds.begin(); it != __trustedIds.end(); ++it) { if (localPort.compare(it->second) == 0) @@ -579,7 +579,7 @@ MessagePortProxy::OnSendMessageInternal(const BundleBuffer& metadata, const Bund string messageType = bundle_get_val(b, MESSAGE_TYPE); - _LOGD("Message received to App: %s, Port: %s, Trusted: %s", pRemoteAppId, pRemotePort, trustedMessage.c_str()); + _LOGI("Message received to App: %s, Port: %s, Trusted: %s", pRemoteAppId, pRemotePort, trustedMessage.c_str()); int id = 0; messageport_message_cb callback; @@ -608,7 +608,7 @@ MessagePortProxy::OnSendMessageInternal(const BundleBuffer& metadata, const Bund string localPort = bundle_get_val(b, LOCAL_PORT); string trustedLocal = bundle_get_val(b, TRUSTED_LOCAL); - _LOGD("From App: %s, Port: %s, TrustedLocal: %s", localAppId.c_str(), localPort.c_str(), trustedLocal.c_str()); + _LOGI("From App: %s, Port: %s, TrustedLocal: %s", localAppId.c_str(), localPort.c_str(), trustedLocal.c_str()); bool trustedPort = (trustedLocal.compare("TRUE") == 0); @@ -618,7 +618,7 @@ MessagePortProxy::OnSendMessageInternal(const BundleBuffer& metadata, const Bund } else { - _LOGD("No callback"); + _LOGI("No callback"); } bundle_free(b); diff --git a/src/message-port-log.h b/src/message-port-log.h index 15dc711..9823651 100644 --- a/src/message-port-log.h +++ b/src/message-port-log.h @@ -30,10 +30,10 @@ extern "C" { #define LOG_TAG "MESSAGE_PORT" #define _LOGE(fmt, arg...) LOGE(fmt, ##arg) -#define _LOGD(fmt, arg...) LOGD(fmt, ##arg) +#define _LOGI(fmt, arg...) LOGI(fmt, ##arg) -#define _SECURE_LOGE(fmt, arg...) SECURE_LOGE(fmt, ##arg) -#define _SECURE_LOGD(fmt, arg...) SECURE_LOGD(fmt, ##arg) +//#define _SECURE_LOGE(fmt, arg...) SECURE_LOGE(fmt, ##arg) +//#define _SECURE_LOGI(fmt, arg...) SECURE_LOGI(fmt, ##arg) /** * @}