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;
}
/* 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;
}
}