diff options
author | Elliott Hughes <enh@google.com> | 2017-03-23 23:04:27 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2017-03-23 23:04:27 -0700 |
commit | 561da6aa82f61c602072e0ac76a7feb67615ac7e (patch) | |
tree | 8e02524da1f9c76a68a87d417e38e4b50ecbf6c4 /debuggerd | |
parent | 1d1de8e282106910bcb67c9750a2df6e830b39be (diff) | |
download | core-561da6aa82f61c602072e0ac76a7feb67615ac7e.tar.gz core-561da6aa82f61c602072e0ac76a7feb67615ac7e.tar.bz2 core-561da6aa82f61c602072e0ac76a7feb67615ac7e.zip |
"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
Diffstat (limited to 'debuggerd')
-rw-r--r-- | debuggerd/handler/debuggerd_handler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debuggerd/handler/debuggerd_handler.cpp b/debuggerd/handler/debuggerd_handler.cpp index cf24d5767..cd00dc5e5 100644 --- a/debuggerd/handler/debuggerd_handler.cpp +++ b/debuggerd/handler/debuggerd_handler.cpp @@ -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; } |