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


Loading…
Cancel
Save