Available languages:
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
- 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.)
- open chrome://crashes and check developer info on the right top.
- you can see the name of crash log you wanna peak.
- go to /Users/[user]/Library/Application\ Support/Google/Chrome/Crashpad/completed/.
- ok, now exec out/Default/minidump_stackwalk /Users/[user]/Library/Application\ Support/Google/Chrome/Crashpad/completed/[logname].dmp.