Merge "Fix applypatch_check failure when applying update on angler" am: 7df1850d37
am: ece0b68ca6

Change-Id: I94f84db1cc053fa583adefc2ea69b3d4c0547de4
diff --git a/install.cpp b/install.cpp
index fada2de..919f241 100644
--- a/install.cpp
+++ b/install.cpp
@@ -544,7 +544,7 @@
         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));
         }