Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit db77079

Browse files
committed
Comment out call to global internal logger
1 parent b3bd16e commit db77079

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

manifest.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import (
1212
"sort"
1313

1414
"github.com/golang/dep/gps"
15-
"github.com/golang/dep/internal"
1615
"github.com/pelletier/go-toml"
1716
"github.com/pkg/errors"
1817
)
@@ -105,9 +104,10 @@ func readManifest(r io.Reader) (*Manifest, error) {
105104
if err != nil {
106105
return nil, errors.Wrap(err, "Manifest validation failed")
107106
}
108-
for _, e := range errs {
109-
internal.Logf("WARNING: %v", e)
110-
}
107+
//for _, e := range errs {
108+
// FIXME(sdboyer) need to adapt this to use an injected *Loggers
109+
//internal.Logf("WARNING: %v", e)
110+
//}
111111

112112
raw := rawManifest{}
113113
err = toml.Unmarshal(buf.Bytes(), &raw)

0 commit comments

Comments
 (0)