From: Maneesh Jain Date: Tue, 10 Oct 2017 03:25:49 +0000 (+0530) Subject: Replace LOGE with WMESH_LOGE Macro X-Git-Tag: accepted/tizen/unified/20171102.061546~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=80a267beb8b7056eaec779e669abf173e4d172a4;p=platform%2Fcore%2Fconnectivity%2Fwifi-mesh-manager.git Replace LOGE with WMESH_LOGE Macro Change-Id: Ie984e48b28091eaa47f5b1cb51e811407e617019 Signed-off-by: Maneesh Jain --- diff --git a/src/wmesh-gdbus.c b/src/wmesh-gdbus.c old mode 100644 new mode 100755 index c8123b3..1ffacdd --- a/src/wmesh-gdbus.c +++ b/src/wmesh-gdbus.c @@ -1025,7 +1025,7 @@ static int _wmesh_gdbus_get_mesh_network_property(wmesh_service *service, /* Get properties */ _get_mesh_property(variant, result); } else if (error) { - LOGE("Failed DBus call [%s]", error->message); + WMESH_LOGE("Failed DBus call [%s]", error->message); g_error_free(error); return WMESHD_ERROR_IO_ERROR; } @@ -1108,7 +1108,7 @@ int wmesh_gdbus_set_passphrase(wmesh_service *service, wmesh_scan_result_s *info if (variant) { WMESH_LOGD("Successfully requested. [SetProperty]"); } else if (error) { - LOGE("Failed DBus call [%s]", error->message); + WMESH_LOGE("Failed DBus call [%s]", error->message); g_error_free(error); return WMESHD_ERROR_IO_ERROR; } @@ -1187,7 +1187,7 @@ int wmesh_gdbus_disconnect_network(wmesh_service *service, wmesh_scan_result_s * if (variant) { WMESH_LOGD("Successfully requested. [Disconnect]"); } else if (error) { - LOGE("Failed DBus call [%s]", error->message); + WMESH_LOGE("Failed DBus call [%s]", error->message); g_error_free(error); return WMESHD_ERROR_IO_ERROR; } @@ -1214,7 +1214,7 @@ int wmesh_gdbus_remove_network(wmesh_service *service, wmesh_scan_result_s *info if (variant) { WMESH_LOGD("Successfully requested. [Remove]"); } else if (error) { - LOGE("Failed DBus call [%s]", error->message); + WMESH_LOGE("Failed DBus call [%s]", error->message); g_error_free(error); return WMESHD_ERROR_IO_ERROR; }