Skip to content

Commit

Permalink
remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
leafo committed Nov 22, 2023
1 parent 30709bd commit 8629859
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions zipserver/s3_storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ package zipserver

import (
"context"
"encoding/json"
"io"
"log"
"net/url"
"strconv"

Expand Down Expand Up @@ -73,11 +71,6 @@ func (c *S3Storage) HeadFile(ctx context.Context, bucket, key string) (url.Value
return nil, err
}

headJson, err := json.Marshal(result)
if err == nil {
log.Print("Head", string(headJson))
}

out := url.Values{}
if result.ChecksumSHA256 != nil {
out.Add("ChecksumSHA256", *result.ChecksumSHA256)
Expand Down

0 comments on commit 8629859

Please sign in to comment.