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

Commit 561da6aa authored by Elliott Hughes's avatar Elliott Hughes
Browse files

"Requested dump for tid XXX" message shouldn't be fatal.

This just means we were asked to dump, not that something necessarily went
wrong.

Bug: http://b/36191903
Test: builds
Change-Id: I5638b38f3a13081b1e971512f43238010febb59c
parent 1d1de8e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -120,7 +120,7 @@ static void log_signal_summary(int signum, const siginfo_t* info) {
  }
  }


  if (signum == DEBUGGER_SIGNAL) {
  if (signum == DEBUGGER_SIGNAL) {
    __libc_format_log(ANDROID_LOG_FATAL, "libc", "Requested dump for tid %d (%s)", gettid(),
    __libc_format_log(ANDROID_LOG_INFO, "libc", "Requested dump for tid %d (%s)", gettid(),
                      thread_name);
                      thread_name);
    return;
    return;
  }
  }