Skip to content

Commit

Permalink
symbolizer: add file path in symbolized summary logging
Browse files Browse the repository at this point in the history
It's valuable to identify which file failed to symbolized the frames.

Change-Id: I186052b91d43413298731383b45ab57af964eba6
  • Loading branch information
simpleton committed Jan 16, 2025
1 parent cd35132 commit 1c84f78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/profiling/symbolizer/breakpad_symbolizer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ std::vector<std::vector<SymbolizedFrame>> BreakpadSymbolizer::Symbolize(
}
result.push_back({std::move(frame)});
}
PERFETTO_PLOG("Symbolized %zu of %zu frames.", num_symbolized_frames,
address.size());
PERFETTO_PLOG("Symbolized %zu of %zu frames on symbol file %s.",
num_symbolized_frames, address.size(), file_path.c_str());
return result;
}

Expand Down

0 comments on commit 1c84f78

Please sign in to comment.