idem, avoid to pollute the console as default
This commit is contained in:
parent
1be26214e6
commit
435e365c3a
|
@ -63,7 +63,7 @@ final class KqueueEventLoop : PosixEventLoop {
|
||||||
|
|
||||||
if (ret > 0) {
|
if (ret > 0) {
|
||||||
foreach (ref evt; m_events[0 .. ret]) {
|
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);
|
assert(evt.ident <= uint.max);
|
||||||
auto fd = cast(FD)cast(int)evt.ident;
|
auto fd = cast(FD)cast(int)evt.ident;
|
||||||
if (evt.flags & (EV_EOF|EV_ERROR))
|
if (evt.flags & (EV_EOF|EV_ERROR))
|
||||||
|
|
Loading…
Reference in a new issue