http3: don't use error string as a format string in debug log message (#4211)

Fixes: #4209
This commit is contained in:
Constantine Shablia 2023-12-19 05:27:07 +02:00 committed by GitHub
parent e0bf13be01
commit 5d6bf7e206
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -284,7 +284,7 @@ func (s *Server) ServeListener(ln QUICEarlyListener) error {
}
go func() {
if err := s.handleConn(conn); err != nil {
s.logger.Debugf(err.Error())
s.logger.Debugf("handling connection failed: %s", err)
}
}()
}