tasn pushed a commit to branch master.

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

commit fe4e464fb6c6418d5bc60bf26ae9a2d75b42b435
Author: Vincent Torri <vincent.to...@gmail.com>
Date:   Tue Jul 7 12:33:39 2015 +0200

    Ecore_Con: decrease log level in ecore_con_local_win32
---
 src/lib/ecore_con/ecore_con_local_win32.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/ecore_con/ecore_con_local_win32.c 
b/src/lib/ecore_con/ecore_con_local_win32.c
index 29ed3c6..7d8b838 100644
--- a/src/lib/ecore_con/ecore_con_local_win32.c
+++ b/src/lib/ecore_con/ecore_con_local_win32.c
@@ -547,7 +547,7 @@ ecore_con_local_connect(Ecore_Con_Server *obj,
 
    if ((svr->type & ECORE_CON_TYPE) == ECORE_CON_LOCAL_ABSTRACT)
      {
-        ERR("Your system does not support abstract sockets!");
+        WRN("Your system does not support abstract sockets!");
         return EINA_FALSE;
      }
 
@@ -576,14 +576,14 @@ ecore_con_local_connect(Ecore_Con_Server *obj,
         /* if pipe not busy, we exit */
         if (GetLastError() != ERROR_PIPE_BUSY)
           {
-             ERR("Connection to a server failed");
+             DBG("Connection to a server failed");
              return EINA_FALSE;
           }
 
         /* pipe busy, so we wait for it */
         if (!WaitNamedPipe(buf, NMPWAIT_WAIT_FOREVER))
           {
-             ERR("Can not wait for a server");
+             DBG("Can not wait for a server");
              goto close_pipe;
           }
      }

-- 


Reply via email to