Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bbd4d244 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 13613609 from f63792b9 to 25Q4-release

Change-Id: I826bf524758f5997cab0743f3b52d4e6b36d4d7a
parents 0cd3119e f63792b9
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -76,11 +76,10 @@ static bool IsDeviceUnlocked() {
static void UiLogger(android::base::LogId log_buffer_id, android::base::LogSeverity severity,
                     const char* tag, const char* file, unsigned int line, const char* message) {
  android::base::KernelLogger(log_buffer_id, severity, tag, file, line, message);
  static constexpr auto&& log_characters = "VDIWEF";
  if (severity >= android::base::ERROR && ui != nullptr) {
    ui->Print("ERROR: %10s: %s\n", tag, message);
  } else {
    fprintf(stdout, "%c:%s\n", log_characters[severity], message);
    fprintf(stdout, "%c:%s\n", android::base::kSeverityChars[severity], message);
  }
}