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 | 78bc32e5d016508cddc5bc41311123b566db2d45 (patch) | |
| tree | 8e02524da1f9c76a68a87d417e38e4b50ecbf6c4 /debuggerd/handler/debuggerd_handler.cpp | |
| parent | 51893f20564cb04b1469c17fb9c73e4877ddab0c (diff) | |
"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/handler/debuggerd_handler.cpp')
| -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 cf24d5767a..cd00dc5e5a 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; } |
