Reputation: 7768
Where to find the Google Chrome logs? In which location can I find the Chrome logs if it crashes?
Upvotes: 48
Views: 128814
Reputation: 53
In some cases, if you cannot access the Chrome settings page, create a shortcut for chrome and add the following flag to the target.
--enable-logging --v=1
Then run Chrome using that shortcut, and you can see the log file in your user folder.
C:\Users\[User name]\AppData\Local\Google\Chrome\User Data\chrome_debug.log
Upvotes: 0
Reputation: 31
Mac OS 10.13.4 Chrome Version 73.0.3683.103 (Official Build) (64-bit)
I got:
~/Library/Application Support/Google/Chrome/Crashpad/completed/
Upvotes: 3
Reputation: 126
Dump files are stored under %HOMEPATH%\AppData\Local\Google\Chrome\User Data\Crashpad\reports
Source: https://superuser.com/questions/624/where-is-google-chrome-crash-dump-located
Upvotes: 8
Reputation:
First, you must enable crash logging in advanced settings by ticking "Automatically send usage statistics and crash reports to Google".
Crash logs can then be found in chrome://crashes
.
Note that by enabling this, your crash reports and stats will be sent to Google servers...
Upvotes: 15