"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
This commit is contained in:
parent
1d1de8e282
commit
561da6aa82
|
@ -120,7 +120,7 @@ static void log_signal_summary(int signum, const siginfo_t* info) {
|
|||
}
|
||||
|
||||
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);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue