Remove excess logging in secdiscard
Remove all debug logs to reduce logspam a bit.
Bug: 64349233
Test: manual
Change-Id: I234fae7b9fb719b09af27985736f43f085dad301
diff --git a/secdiscard.cpp b/secdiscard.cpp
index 2d9dc35..cb2eca9 100644
--- a/secdiscard.cpp
+++ b/secdiscard.cpp
@@ -94,7 +94,6 @@
}
set = 0;
ioctl(fd, F2FS_IOC_SET_PIN_FILE, &set);
- LOG(DEBUG) << "Discarded: " << target;
}
return 0;
}
@@ -143,9 +142,8 @@
range[0] = fiemap->fm_extents[i].fe_physical;
range[1] = fiemap->fm_extents[i].fe_length;
if (ioctl(fs_fd.get(), BLKSECDISCARD, range) == -1) {
- PLOG(ERROR) << "Unable to BLKSECDISCARD " << path;
+ // Use zero overwrite as a fallback for BLKSECDISCARD
if (!overwrite_with_zeros(fs_fd.get(), range[0], range[1])) return false;
- LOG(DEBUG) << "Used zero overwrite";
}
}
return true;