Skip to content

Commit 3b66bc0

Browse files
authored
fix small issue (log call with wrong parameters) (#190)
1 parent d9408a0 commit 3b66bc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netcat/modes/quic-modes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func DoListenQUIC(port uint16) chan io.ReadWriteCloser {
7373
for {
7474
sess, err := listener.Accept(context.Background())
7575
if err != nil {
76-
log.Crit("Can't accept listener: %v", err)
76+
log.Crit("Can't accept listener", "err", err)
7777
continue
7878
}
7979

0 commit comments

Comments
 (0)