diff --git a/source/eventcore/drivers/posix/kqueue.d b/source/eventcore/drivers/posix/kqueue.d index 8a96902..43e27a6 100644 --- a/source/eventcore/drivers/posix/kqueue.d +++ b/source/eventcore/drivers/posix/kqueue.d @@ -63,7 +63,7 @@ final class KqueueEventLoop : PosixEventLoop { if (ret > 0) { foreach (ref evt; m_events[0 .. ret]) { - print("event %s %s", evt.ident, evt.filter, evt.flags); + //print("event %s %s", evt.ident, evt.filter, evt.flags); assert(evt.ident <= uint.max); auto fd = cast(FD)cast(int)evt.ident; if (evt.flags & (EV_EOF|EV_ERROR))