mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-28 23:49:44 +08:00
Remove verbose log in mg_iotest()
This commit is contained in:
parent
14ad51d2d2
commit
686320a805
@ -4414,9 +4414,7 @@ static void mg_iotest(struct mg_mgr *mgr, int ms) {
|
||||
}
|
||||
}
|
||||
|
||||
int res = poll(fds, n, ms);
|
||||
MG_DEBUG(("n=%d, ms=%d, errno=%d", n, ms, errno));
|
||||
if (res < 0) {
|
||||
if (poll(fds, n, ms) < 0) {
|
||||
MG_ERROR(("poll failed, errno: %d", MG_SOCK_ERRNO));
|
||||
} else {
|
||||
n = 0;
|
||||
|
@ -496,9 +496,7 @@ static void mg_iotest(struct mg_mgr *mgr, int ms) {
|
||||
}
|
||||
}
|
||||
|
||||
int res = poll(fds, n, ms);
|
||||
MG_DEBUG(("n=%d, ms=%d, errno=%d", n, ms, errno));
|
||||
if (res < 0) {
|
||||
if (poll(fds, n, ms) < 0) {
|
||||
MG_ERROR(("poll failed, errno: %d", MG_SOCK_ERRNO));
|
||||
} else {
|
||||
n = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user