Use INFO level log when get_associate failed in PortEventPoll::poll()

pull/82/head
Tatsuhiro Tsujikawa 2013-04-20 21:03:38 +09:00
parent 51f3bc59e1
commit 9abbd5c917
1 changed files with 4 additions and 4 deletions

View File

@ -124,10 +124,10 @@ void PortEventPoll::poll(const struct timeval& tv)
p->getEvents().events, p);
int errNum = errno;
if(r == -1) {
A2_LOG_ERROR(fmt("port_associate failed for file descriptor %d:"
" cause %s",
pev.portev_object,
util::safeStrerror(errNum).c_str()));
A2_LOG_INFO(fmt("port_associate failed for file descriptor %d:"
" cause %s",
pev.portev_object,
util::safeStrerror(errNum).c_str()));
}
}
} else if(res == -1) {