summaryrefslogtreecommitdiff
path: root/goDep.parseGoSum.go
diff options
context:
space:
mode:
Diffstat (limited to 'goDep.parseGoSum.go')
-rw-r--r--goDep.parseGoSum.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/goDep.parseGoSum.go b/goDep.parseGoSum.go
index baed7f4..cfe1deb 100644
--- a/goDep.parseGoSum.go
+++ b/goDep.parseGoSum.go
@@ -21,7 +21,7 @@ func (repo *Repo) ParseGoSum() bool {
// that means, there is not a go.sum file
// because the package is completely self contained!
if err := repo.setPrimitive(); err != nil {
- log.Info("gitpb.ParseGoSum()", err)
+ // log.Info("gitpb.ParseGoSum()", err)
return false
}
if repo.GetGoPrimitive() {
@@ -32,7 +32,7 @@ func (repo *Repo) ParseGoSum() bool {
gosum, err := os.Open(tmp)
defer gosum.Close()
if err != nil {
- log.Info("gitpb.ParseGoSum()", err)
+ log.Info("gitpb.ParseGoSum() missing go.sum. Some error happened with go mod init & tidy", err)
return false
}