Browse Source

remove asset logging

Brett Langdon 9 years ago
parent
commit
13bf99eaa7
No known key found for this signature in database GPG Key ID: A2ECAB73CE12147F
1 changed files with 0 additions and 4 deletions
  1. +0
    -4
      client.go

+ 0
- 4
client.go View File

@ -3,7 +3,6 @@ package pypihub
import ( import (
"fmt" "fmt"
"io" "io"
"log"
"net/http" "net/http"
"net/url" "net/url"
"strings" "strings"
@ -61,7 +60,6 @@ func (c *Client) getRepoTagAssets(owner string, repo string) ([]Asset, error) {
Ref: *tag.Name, Ref: *tag.Name,
Format: "tarball", Format: "tarball",
}) })
log.Printf("found asset %s/%s/%s/%s", owner, repo, *tag.Name, name)
} }
return allAssets, nil return allAssets, nil
@ -101,7 +99,6 @@ func (c *Client) GetRepoAssets(r string) ([]Asset, error) {
Owner: owner, Owner: owner,
Repo: repo, Repo: repo,
}) })
log.Printf("found asset %s/%s/%s/%s", owner, repo, *rel.Name, *a.Name)
} }
if hasTar == false { if hasTar == false {
@ -115,7 +112,6 @@ func (c *Client) GetRepoAssets(r string) ([]Asset, error) {
Ref: *rel.TagName, Ref: *rel.TagName,
Format: "tarball", Format: "tarball",
}) })
log.Printf("found asset %s/%s/%s/%s", owner, repo, *rel.Name, name)
} }
} }


Loading…
Cancel
Save