"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:
Elliott Hughes 2017-03-23 23:04:27 -07:00
parent 1d1de8e282
commit 561da6aa82
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}