summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-10-14 01:04:07 +0200
committerTao Bao <tbao@google.com>2016-10-14 02:17:16 +0200
commite30a5b3a44c6c2134750e28a88efd5876a28bfac (patch)
tree2eb12fdfc95a0f3bd4a8efec0102364fb3b4cbf5
parentMerge "edify: Some clean-ups to libedify." am: c5b4b71913 am: 039e9dc5ca am: bd16939bbf (diff)
downloadandroid_bootable_recovery-e30a5b3a44c6c2134750e28a88efd5876a28bfac.tar
android_bootable_recovery-e30a5b3a44c6c2134750e28a88efd5876a28bfac.tar.gz
android_bootable_recovery-e30a5b3a44c6c2134750e28a88efd5876a28bfac.tar.bz2
android_bootable_recovery-e30a5b3a44c6c2134750e28a88efd5876a28bfac.tar.lz
android_bootable_recovery-e30a5b3a44c6c2134750e28a88efd5876a28bfac.tar.xz
android_bootable_recovery-e30a5b3a44c6c2134750e28a88efd5876a28bfac.tar.zst
android_bootable_recovery-e30a5b3a44c6c2134750e28a88efd5876a28bfac.zip
-rw-r--r--install.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.cpp b/install.cpp
index 83ddc4b0c..aa1fe173e 100644
--- a/install.cpp
+++ b/install.cpp
@@ -537,7 +537,7 @@ install_package(const char* path, bool* wipe_cache, const char* install_file,
if (!android::base::ReadFileToString(UNCRYPT_STATUS, &uncrypt_status)) {
PLOG(WARNING) << "failed to read uncrypt status";
} else if (!android::base::StartsWith(uncrypt_status, "uncrypt_")) {
- PLOG(WARNING) << "corrupted uncrypt_status: " << uncrypt_status;
+ LOG(WARNING) << "corrupted uncrypt_status: " << uncrypt_status;
} else {
log_buffer.push_back(android::base::Trim(uncrypt_status));
}