Switch recovery to libbase logging

Clean up the recovery image and switch to libbase logging.

Bug: 28191554
Change-Id: Icd999c3cc832f0639f204b5c36cea8afe303ad35
(cherry picked from commit 747781433f)
This commit is contained in:
Tianjie Xu
2016-08-05 18:00:04 -07:00
parent 28f6c43db5
commit c21edd4654
20 changed files with 352 additions and 546 deletions
+3 -2
View File
@@ -31,6 +31,7 @@
#include <vector>
#include <android-base/logging.h>
#include <android-base/strings.h>
#include <android-base/stringprintf.h>
#include <cutils/properties.h>
@@ -417,14 +418,14 @@ void ScreenRecoveryUI::ProgressThreadLoop() {
void ScreenRecoveryUI::LoadBitmap(const char* filename, GRSurface** surface) {
int result = res_create_display_surface(filename, surface);
if (result < 0) {
LOGE("couldn't load bitmap %s (error %d)\n", filename, result);
LOG(ERROR) << "couldn't load bitmap " << filename << " (error " << result << ")";
}
}
void ScreenRecoveryUI::LoadLocalizedBitmap(const char* filename, GRSurface** surface) {
int result = res_create_localized_alpha_surface(filename, locale, surface);
if (result < 0) {
LOGE("couldn't load bitmap %s (error %d)\n", filename, result);
LOG(ERROR) << "couldn't load bitmap " << filename << " (error " << result << ")";
}
}