Skip to content

Commit

Permalink
Merge "symbolizer: add file path in symbolized summary logging" into …
Browse files Browse the repository at this point in the history
…main
  • Loading branch information
rsavitski authored and Gerrit Code Review committed Feb 4, 2025
2 parents 85cc017 + 1c84f78 commit 78da381
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 @@ -96,8 +96,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 78da381

Please sign in to comment.