Skip to content
Snippets Groups Projects
Commit a89b57d6 authored by Mark Grondona's avatar Mark Grondona
Browse files

o remove some verbose logging

parent af6b702b
No related branches found
No related tags found
No related merge requests found
...@@ -119,7 +119,6 @@ _poll_setup_pollfds(struct pollfd *pfds, io_obj_t *map[], List l) ...@@ -119,7 +119,6 @@ _poll_setup_pollfds(struct pollfd *pfds, io_obj_t *map[], List l)
unsigned int nfds = 0; unsigned int nfds = 0;
while ((obj = (io_obj_t *) list_next(i))) { while ((obj = (io_obj_t *) list_next(i))) {
verbose("processing fd %d", obj->fd);
if (_is_writable(obj) && _is_readable(obj)) { if (_is_writable(obj) && _is_readable(obj)) {
pfds[nfds].fd = obj->fd; pfds[nfds].fd = obj->fd;
pfds[nfds].events = POLLOUT | POLLIN; pfds[nfds].events = POLLOUT | POLLIN;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment