mirror of
https://github.com/cesanta/mongoose.git
synced 2025-01-01 19:17:48 +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);
|
if (poll(fds, n, ms) < 0) {
|
||||||
MG_DEBUG(("n=%d, ms=%d, errno=%d", n, ms, errno));
|
|
||||||
if (res < 0) {
|
|
||||||
MG_ERROR(("poll failed, errno: %d", MG_SOCK_ERRNO));
|
MG_ERROR(("poll failed, errno: %d", MG_SOCK_ERRNO));
|
||||||
} else {
|
} else {
|
||||||
n = 0;
|
n = 0;
|
||||||
|
@ -496,9 +496,7 @@ static void mg_iotest(struct mg_mgr *mgr, int ms) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int res = poll(fds, n, ms);
|
if (poll(fds, n, ms) < 0) {
|
||||||
MG_DEBUG(("n=%d, ms=%d, errno=%d", n, ms, errno));
|
|
||||||
if (res < 0) {
|
|
||||||
MG_ERROR(("poll failed, errno: %d", MG_SOCK_ERRNO));
|
MG_ERROR(("poll failed, errno: %d", MG_SOCK_ERRNO));
|
||||||
} else {
|
} else {
|
||||||
n = 0;
|
n = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user