Removing some debug statements
diff --git a/cache/cache.go b/cache/cache.go
index 9f8284b..5d6a49d 100644
--- a/cache/cache.go
+++ b/cache/cache.go
@@ -178,14 +178,12 @@
 	lockSync.Lock()
 	m, ok := lockData[name]
 	if !ok {
-		msg.Debug("Creating lock for %s", name)
 		m = &sync.Mutex{}
 		lockData[name] = m
 	}
 	lockSync.Unlock()
 	msg.Debug("Locking %s", name)
 	m.Lock()
-	msg.Debug("Locking %s ...", name)
 }
 
 // Unlock unlocks a particular key name
diff --git a/vendor/github.com/Masterminds/vcs/git.go b/vendor/github.com/Masterminds/vcs/git.go
index 8758390..778b6af 100644
--- a/vendor/github.com/Masterminds/vcs/git.go
+++ b/vendor/github.com/Masterminds/vcs/git.go
@@ -3,7 +3,6 @@
 import (
 	"bytes"
 	"encoding/xml"
-	"fmt"
 	"io/ioutil"
 	"os"
 	"os/exec"
@@ -83,14 +82,12 @@
 
 			out, err = s.run("git", "clone", s.Remote(), s.LocalPath())
 			if err != nil {
-				fmt.Println(err)
 				return NewRemoteError("Unable to get repository", err, string(out))
 			}
 			return err
 		}
 
 	} else if err != nil {
-		fmt.Println(err)
 		return NewRemoteError("Unable to get repository", err, string(out))
 	}