Skip to content

Commit

Permalink
Remove debug log output
Browse files Browse the repository at this point in the history
  • Loading branch information
gwillem committed Feb 4, 2025
1 parent 97acfe3 commit 33720ee
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions http.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (
"crypto/tls"
"fmt"
"io"
"log"
"net"
"net/http"
"strings"
Expand Down Expand Up @@ -311,7 +310,6 @@ func decodeContent(r io.Reader, encodings []string) ([]byte, error) {
for i := len(encodings) - 1; i >= 0; i-- {
switch strings.ToLower(encodings[i]) {
case "gzip":
log.Println("decoding gzip content")
r, err = gzip.NewReader(r)
if err != nil {
return nil, fmt.Errorf("error gzip-decoding: %w", err)
Expand Down

0 comments on commit 33720ee

Please sign in to comment.