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 f16f5d2 commit 2f96b10Copy full SHA for 2f96b10
fcgi.go
@@ -247,7 +247,7 @@ func (s *Server) handleFcgiConnection(fd io.ReadWriteCloser) {
247
content := make([]byte, h.ContentLength)
248
_, err = io.ReadFull(br, content)
249
if err != nil {
250
- s.Logger.Println("FCGI Error", err.String())
+ s.Logger.Println("FCGI Error", err.Error())
251
break
252
}
253
@@ -256,7 +256,7 @@ func (s *Server) handleFcgiConnection(fd io.ReadWriteCloser) {
256
padding := make([]byte, h.PaddingLength)
257
_, err = io.ReadFull(br, padding)
258
259
260
261
262
0 commit comments