Replace LOGE with WMESH_LOGE Macro 75/154275/1
authorManeesh Jain <maneesh.jain@samsung.com>
Tue, 10 Oct 2017 03:25:49 +0000 (08:55 +0530)
committerManeesh Jain <maneesh.jain@samsung.com>
Tue, 10 Oct 2017 03:26:43 +0000 (08:56 +0530)
Change-Id: Ie984e48b28091eaa47f5b1cb51e811407e617019
Signed-off-by: Maneesh Jain <maneesh.jain@samsung.com>
src/wmesh-gdbus.c [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index c8123b3..1ffacdd
@@ -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;
        }