Merge pull request #10311 from jfrazelle/quiet-logs-registry

Make debugs logs less verbose for registry
Upstream-commit: 62c50abf1382fb3a4cfb72131d0f1573a25ad000
Component: engine
This commit is contained in:
Michael Crosby
2015-01-23 13:56:31 -08:00
2 changed files with 0 additions and 3 deletions
-1
View File
@@ -153,7 +153,6 @@ func (s *TagStore) pullRepository(r *registry.Session, out io.Writer, repoInfo *
for _, image := range repoData.ImgList {
downloadImage := func(img *registry.ImgData) {
if askedTag != "" && img.Tag != askedTag {
log.Debugf("(%s) does not match %s (id: %s), skipping", img.Tag, askedTag, img.ID)
if parallel {
errors <- nil
}
-2
View File
@@ -9,7 +9,6 @@ import (
"strconv"
"time"
log "github.com/Sirupsen/logrus"
"github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/tarsum"
"github.com/docker/docker/runconfig"
@@ -274,7 +273,6 @@ func (img *Image) CheckDepth() error {
func NewImgJSON(src []byte) (*Image, error) {
ret := &Image{}
log.Debugf("Json string: {%s}", src)
// FIXME: Is there a cleaner way to "purify" the input json?
if err := json.Unmarshal(src, ret); err != nil {
return nil, err