raster pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=a4bcd1549899da24277f42f92e9400c7ba426e67

commit a4bcd1549899da24277f42f92e9400c7ba426e67
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Tue Jun 4 15:23:29 2019 +0100

    ecore_evas wl - make ERR's into WRNS as they really are just that
---
 src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c 
b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c
index f33de88146..7696125d5f 100644
--- a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c
+++ b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c
@@ -2481,20 +2481,20 @@ _ecore_evas_wl_common_new_internal(const char 
*disp_name, Ecore_Window parent, i
 
    if (!(method = evas_render_method_lookup(engine_name)))
      {
-        ERR("Render method lookup failed for %s", engine_name);
+        WRN("Render method lookup failed for %s", engine_name);
         return NULL;
      }
 
    if (!ecore_wl2_init())
      {
-        ERR("Failed to initialize Ecore_Wl2");
+        WRN("Failed to initialize Ecore_Wl2");
         return NULL;
      }
 
    ewd = ecore_wl2_display_connect(disp_name);
    if (!ewd)
      {
-        ERR("Failed to connect to Wayland Display %s", disp_name);
+        WRN("Failed to connect to Wayland Display %s", disp_name);
         goto conn_err;
      }
 

-- 


Reply via email to