Fixed error message handling. 20/300620/1 accepted/tizen/unified/20231031.163518
authorjykeon <jykeon@samsung.com>
Mon, 30 Oct 2023 05:29:53 +0000 (14:29 +0900)
committerjykeon <jykeon@samsung.com>
Mon, 30 Oct 2023 05:29:53 +0000 (14:29 +0900)
Change-Id: I4674470a84551ea966ebe3f352eb20f11da2cde7
Signed-off-by: jykeon <jykeon@samsung.com>
src/lib/ecore_wl2/ecore_wl2_display.c

index 1ef4a35..d174404 100644 (file)
@@ -843,7 +843,7 @@ _cb_global_add(void *data, struct wl_registry *registry, unsigned int id, const
    //TIZEN_ONLY(2023): ecore_Wl2: improved Wayland issues handling
    if (!data)
      {
-       ERR("No data provided for global add event");
+       EINA_LOG_ERR("No data provided for global add event");
        return;
      }
    //
@@ -884,7 +884,7 @@ _cb_global_add(void *data, struct wl_registry *registry, unsigned int id, const
         //TIZEN_ONLY(2023): ecore_wl2: improved Wayland issues handling
         if (ewd->wl.compositor == NULL)
           {
-             ERR("Failed to bind wl_compositor");
+             EINA_LOG_ERR("Failed to bind wl_compositor");
              goto error;
           }
         //
@@ -1122,7 +1122,7 @@ event:
 
 //TIZEN_ONLY(2023): ecore_wl2: improved Wayland issues handlin
 error:
-   ERR("Failed to create global for registry : %p, id: %d, interface: %s, version: %d", registry, id, interface, version);
+   EINA_LOG_ERR("Failed to create global for registry : %p, id: %d, interface: %s, version: %d", registry, id, interface, version);
 //
 }