Skip to content

Commit

Permalink
refactor: fix log output format
Browse files Browse the repository at this point in the history
  • Loading branch information
byene0923 committed May 9, 2024
1 parent 8a6a7a9 commit c83ea12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poller_kqueue.go
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ func (p *poller) readWriteLoop() {
switch int(events[i].Ident) {
case p.evtfd:
default:
logging.Debug("NBIO[%v][%v_%v] trigger event, filter: %d, mod: %d", p.g.Name, p.pollType, p.index, events[i].Filter, p.g.EpollMod)
logging.Debug("NBIO[%v][%v_%v] trigger event, filter: %v, mod: %v", p.g.Name, p.pollType, p.index, events[i].Filter, p.g.EpollMod)
p.readWrite(&events[i])
}
}
Expand Down

0 comments on commit c83ea12

Please sign in to comment.