debug: remove unneeded debug message

Change-Id: I271e7fca0e3786fe90d324d2d1ccba9fa6394b9f
diff --git a/partitionmanager.cpp b/partitionmanager.cpp
index b3716d4..8973782 100755
--- a/partitionmanager.cpp
+++ b/partitionmanager.cpp
@@ -3453,7 +3453,6 @@
 		while ((de = readdir(d)) != NULL) {
 			if (de->d_type == DT_BLK) {
 				std::string block_device = block_path + de->d_name;
-				LOGINFO("block_Device: %s\n", block_device.c_str());
 				if ((fd = open(block_device.c_str(), O_RDONLY | O_CLOEXEC)) < 0) {
 					LOGERR("unable to open block device %s: %s\n", block_device.c_str(), strerror(errno));
 					continue;
@@ -3467,4 +3466,4 @@
 		}
 		closedir(d);
 	}
-}
\ No newline at end of file
+}