Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6e8a1ff9 authored by Narayan Kamath's avatar Narayan Kamath Committed by android-build-merger
Browse files

Merge "tombstoned: Improve message on java trace completion." am: 111f3517...

Merge "tombstoned: Improve message on java trace completion." am: 111f3517 am: 91492a56 am: a153c7dd
am: f4682b2b

Change-Id: Ic720f91a2e7b257fe55c12403a5b5c6bef171624
parents 86c30f92 f4682b2b
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -345,8 +345,15 @@ static void crash_completed_cb(evutil_socket_t sockfd, short ev, void* arg) {
  }

  if (!crash->crash_path.empty()) {
    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:
  CrashQueue* queue = get_crash_queue(crash);