Ecore_Con: decrease log level in ecore_con_local_win32

This commit is contained in:
Vincent Torri 2015-07-07 12:33:39 +02:00 committed by Tom Hacohen
parent a3e3afeb01
commit fe4e464fb6
1 changed files with 3 additions and 3 deletions

View 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;
}
}