Merge "tombstoned: Improve message on java trace completion." am: 111f351762
am: 91492a56ca
Change-Id: I8eef67d2cca8370836bdfa1a246da19769edabf3
This commit is contained in:
commit
a153c7dd2a
1 changed files with 8 additions and 1 deletions
|
|
@ -345,7 +345,14 @@ static void crash_completed_cb(evutil_socket_t sockfd, short ev, void* arg) {
|
|||
}
|
||||
|
||||
if (!crash->crash_path.empty()) {
|
||||
LOG(ERROR) << "Tombstone written to: " << crash->crash_path;
|
||||
if (crash->crash_type == kDebuggerdJavaBacktrace) {
|
||||
LOG(ERROR) << "Traces for pid " << crash->crash_pid << " written to: " << crash->crash_path;
|
||||
} else {
|
||||
// NOTE: Several tools parse this log message to figure out where the
|
||||
// tombstone associated with a given native crash was written. Any changes
|
||||
// to this message must be carefully considered.
|
||||
LOG(ERROR) << "Tombstone written to: " << crash->crash_path;
|
||||
}
|
||||
}
|
||||
|
||||
fail:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue