From 435e365c3af72815e04c0110037b6354cbf6661d Mon Sep 17 00:00:00 2001 From: pinver Date: Tue, 25 Apr 2017 16:32:01 +0200 Subject: [PATCH] idem, avoid to pollute the console as default --- source/eventcore/drivers/posix/kqueue.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))