Browse code

devmapper: Remove accidental debug spew

Docker-DCO-1.1-Signed-off-by: Alexander Larsson <alexl@redhat.com> (github: alexlarsson)

Alexander Larsson authored on 2014/05/09 02:25:47
Showing 1 changed files
... ...
@@ -340,8 +340,6 @@ func (devices *DeviceSet) loadMetadata(hash string) *DevInfo {
340 340
 		return nil
341 341
 	}
342 342
 
343
-	fmt.Printf("Loaded metadata %v\n", info)
344
-
345 343
 	// If the transaction id is larger than the actual one we lost the device due to some crash
346 344
 	if info.TransactionId > devices.TransactionId {
347 345
 		return nil
... ...
@@ -352,7 +350,6 @@ func (devices *DeviceSet) loadMetadata(hash string) *DevInfo {
352 352
 
353 353
 func (devices *DeviceSet) setupBaseImage() error {
354 354
 	oldInfo, _ := devices.lookupDevice("")
355
-	utils.Debugf("oldInfo: %p", oldInfo)
356 355
 	if oldInfo != nil && oldInfo.Initialized {
357 356
 		return nil
358 357
 	}