From af253cd0ef40aa3e212396ba3e25f0eab2192bcf Mon Sep 17 00:00:00 2001 From: bigbiff Date: Sun, 6 Dec 2020 16:50:55 -0500 Subject: [PATCH] debug: remove unneeded debug message Change-Id: I271e7fca0e3786fe90d324d2d1ccba9fa6394b9f --- partitionmanager.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/partitionmanager.cpp b/partitionmanager.cpp index b3716d4b..8973782c 100755 --- a/partitionmanager.cpp +++ b/partitionmanager.cpp @@ -3453,7 +3453,6 @@ void TWPartitionManager::Unlock_Block_Partitions() { 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 @@ void TWPartitionManager::Unlock_Block_Partitions() { } closedir(d); } -} \ No newline at end of file +}