| commit | 18607157c68bc4e038c0c3e96bca41aa057245f3 | [log] [tgz] |
|---|---|---|
| author | Andreas Gampe <agampe@google.com> | Mon Jan 15 15:08:56 2018 -0800 |
| committer | Andreas Gampe <agampe@google.com> | Mon Jan 15 16:12:44 2018 -0800 |
| tree | 0ffa413eb92a63e5c46bf8bdb21029da7c9f7331 | |
| parent | 3e4cd931cc5976280f8e68d5ec377de0deb04480 [diff] |
Perfprofd: Change the imported chrome-base logging Call abort instead of exit to get decent Android support. Test: mmma system/extras/perfprofd Change-Id: Idaa22fef770be343d7939eed6be66429584c85b0
diff --git a/perfprofd/quipper/base/logging.cc b/perfprofd/quipper/base/logging.cc index 7079024..3495d1f 100644 --- a/perfprofd/quipper/base/logging.cc +++ b/perfprofd/quipper/base/logging.cc
@@ -100,7 +100,7 @@ __android_log_write(priority, LOG_TAG, str_newline.c_str()); if (severity_ == LOG_FATAL) { - exit(9); + abort(); } }