Merge "Fix a log issue in ui.cpp." am: 7f38fbf976 am: c33d037d7d

am: 2be767eba4

Change-Id: Id0b175413d92e994fb18c0b93bdfd20a02843e6c
This commit is contained in:
Tao Bao
2017-02-01 16:47:28 +00:00
committed by android-build-merger
+1 -1
View File
@@ -100,7 +100,7 @@ bool RecoveryUI::InitScreensaver() {
// we don't have a good way to query the default value. // we don't have a good way to query the default value.
std::string content; std::string content;
if (!android::base::ReadFileToString(MAX_BRIGHTNESS_FILE, &content)) { if (!android::base::ReadFileToString(MAX_BRIGHTNESS_FILE, &content)) {
LOG(WARNING) << "Failed to read max brightness: " << content; PLOG(WARNING) << "Failed to read max brightness";
return false; return false;
} }