Browse code

tarsum: use Debugf, not Infof

Signed-off-by: Vincent Batts <vbatts@redhat.com>

Vincent Batts authored on 2014/09/10 02:31:11
Showing 1 changed files
... ...
@@ -177,11 +177,11 @@ func (ts *TarSum) Sum(extra []byte) string {
177 177
 		h.Write(extra)
178 178
 	}
179 179
 	for _, sum := range sums {
180
-		log.Infof("-->%s<--", sum)
180
+		log.Debugf("-->%s<--", sum)
181 181
 		h.Write([]byte(sum))
182 182
 	}
183 183
 	checksum := "tarsum+sha256:" + hex.EncodeToString(h.Sum(nil))
184
-	log.Infof("checksum processed: %s", checksum)
184
+	log.Debugf("checksum processed: %s", checksum)
185 185
 	return checksum
186 186
 }
187 187