debug lines
diff --git a/openstack/objectstorage/v1/objects/requests.go b/openstack/objectstorage/v1/objects/requests.go
index 7bc12a4..b7288d6 100644
--- a/openstack/objectstorage/v1/objects/requests.go
+++ b/openstack/objectstorage/v1/objects/requests.go
@@ -228,9 +228,11 @@
 	hash := md5.New()
 	io.Copy(hash, content)
 	localChecksum := hash.Sum(nil)
+	fmt.Printf("localChecksum: %s", fmt.Sprintf("%x", localChecksum))
 
 	for i := 1; i <= 3; i++ {
 		resp, err := doUpload()
+		fmt.Printf("ETag: %s", resp.Header.Get("ETag"))
 		if resp.Header.Get("ETag") == fmt.Sprintf("%x", localChecksum) {
 			res.Err = err
 			break