← Another post?
Available languages:
English

memo -- how to read chrome crash dump

Table of Contents

Chrome doesn't provide crash log unless you enable report sending feature.

However, sometimes, we wanna read crash log without shareing it with Google :)

howto on Mac

  1. build minidump_stackwalk. it's a tool for reading chrome crash log. (basically, all you have to do is clone chrome repo and autoninja -C out/Default minidump_stackwalk.)
  2. open chrome://crashes and check developer info on the right top.
  3. you can see the name of crash log you wanna peak.
  4. go to /Users/[user]/Library/Application\ Support/Google/Chrome/Crashpad/completed/.
  5. ok, now exec out/Default/minidump_stackwalk /Users/[user]/Library/Application\ Support/Google/Chrome/Crashpad/completed/[logname].dmp.
← Another post?