ADD: Logging

This commit is contained in:
Alexander Koblov 2015-10-11 14:49:25 +00:00
commit b9ea68d48e

View file

@ -55,6 +55,7 @@ begin
PollThread:= TPollThread.Create;
end;
PollThread.AddPoll(fd, events, handler, CloseOnDestroy);
Print('AddPoll ' + IntToStr(fd));
end;
procedure RemovePoll(fd: cint);
@ -69,6 +70,7 @@ begin
Break;
end;
end;
Print('RemovePoll ' + IntToStr(fd));
end;
{ TPollThread }