Ecore_Con: decrease log level in ecore_con_local_win32
authorVincent Torri <vincent.torri@gmail.com>
Tue, 7 Jul 2015 10:33:39 +0000 (12:33 +0200)
committerTom Hacohen <tom@stosb.com>
Tue, 7 Jul 2015 11:05:34 +0000 (12:05 +0100)
src/lib/ecore_con/ecore_con_local_win32.c

index 29ed3c6..7d8b838 100644 (file)
@@ -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;
           }
      }