We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db9a73d commit f4a628bCopy full SHA for f4a628b
pkg/epoll/epoll.go
@@ -203,9 +203,9 @@ func (e *Epoll) listen() {
203
events := make([]syscall.EpollEvent, 2)
204
for e.active {
205
// TODO: Handle errors here
206
- klog.Info("waiting for epoll events...")
+ klog.V(4).Info("waiting for epoll events...")
207
count, _ := syscall.EpollWait(e.epfd, events, timeout)
208
- klog.Infof("received %d events from epoll. dispatching...", count)
+ klog..V(4).Infof("received %d events from epoll. dispatching...", count)
209
for i := 0; e.active && i < count; i++ {
210
e.dispatchEvent(&events[i])
211
}
0 commit comments