-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace log with tracing #119
Conversation
What's the diff with #65? |
Fair enough but you could just force push to the same branch and avoid the noise, keep all information/discussion in the same place and avoid this discussion as well. 😊 |
I already deleted the branch so I can't re-open #65, unfortunately. |
src/epoll.rs
Outdated
epoll_fd= ?poller.epoll_fd.as_raw_fd(), | ||
event_fd= ?poller.event_fd.as_raw_fd(), | ||
timer_fd= ?poller.timer_fd, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uhh why does it still use ?
and not %
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since the raw FD is just a number there shouldn't be a difference, although I can adjust it if it's an issue.
Oh, no I wasn't suggesting that. That was for future reference. Sorry for not making it clear. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Supersedes #65