forked from quic-go/quic-go
http3: don't use error string as a format string in debug log message (#4211)
Fixes: #4209
This commit is contained in:
committed by
GitHub
parent
e0bf13be01
commit
5d6bf7e206
@@ -284,7 +284,7 @@ func (s *Server) ServeListener(ln QUICEarlyListener) error {
|
|||||||
}
|
}
|
||||||
go func() {
|
go func() {
|
||||||
if err := s.handleConn(conn); err != nil {
|
if err := s.handleConn(conn); err != nil {
|
||||||
s.logger.Debugf(err.Error())
|
s.logger.Debugf("handling connection failed: %s", err)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user