Generate text tombstones from proto tombstones by default.
We're running into timeouts from death tests because we're ~doubling the cost of crash dumping by doing it twice. Bug: http://b/180605583 Test: treehugger Change-Id: If5b40434171323a09960b70af0124ec08bd3fbe8
This commit is contained in:
parent
c89dd8594e
commit
3be68745ae
1 changed files with 1 additions and 1 deletions
|
@ -619,7 +619,7 @@ void engrave_tombstone(unique_fd output_fd, unique_fd proto_fd, unwindstack::Unw
|
|||
log.tfd = output_fd.get();
|
||||
log.amfd_data = amfd_data;
|
||||
|
||||
bool translate_proto = GetBoolProperty("debug.debuggerd.translate_proto_to_text", false);
|
||||
bool translate_proto = GetBoolProperty("debug.debuggerd.translate_proto_to_text", true);
|
||||
if (translate_proto) {
|
||||
tombstone_proto_to_text(tombstone, [&log](const std::string& line, bool should_log) {
|
||||
_LOG(&log, should_log ? logtype::HEADER : logtype::LOGS, "%s\n", line.c_str());
|
||||
|
|
Loading…
Reference in a new issue