From 3e254b9c894caf3fef313671aedd9f37ee01b500 Mon Sep 17 00:00:00 2001 From: Dees Troy Date: Thu, 6 Mar 2014 20:24:54 +0000 Subject: Change qcom time error messages to info Change-Id: I5a22b2df87920333974d8d18fb29f4ff1627a405 --- twrp-functions.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'twrp-functions.cpp') diff --git a/twrp-functions.cpp b/twrp-functions.cpp index bce65f0ed..c50290df4 100644 --- a/twrp-functions.cpp +++ b/twrp-functions.cpp @@ -1081,20 +1081,20 @@ void TWFunc::Fixup_Time_On_Boot() if(ats_path.empty()) { - LOGERR("TWFunc::Fixup_Time: no ats files found, leaving time as-is!\n"); + LOGINFO("TWFunc::Fixup_Time: no ats files found, leaving time as-is!\n"); return; } f = fopen(ats_path.c_str(), "r"); if(!f) { - LOGERR("TWFunc::Fixup_Time: failed to open file %s\n", ats_path.c_str()); + LOGINFO("TWFunc::Fixup_Time: failed to open file %s\n", ats_path.c_str()); return; } if(fread(&offset, sizeof(offset), 1, f) != 1) { - LOGERR("TWFunc::Fixup_Time: failed load uint64 from file %s\n", ats_path.c_str()); + LOGINFO("TWFunc::Fixup_Time: failed load uint64 from file %s\n", ats_path.c_str()); fclose(f); return; } -- cgit v1.2.3