How to determine what is causing Chrome to show the "Aw, Snap" dialogue

33

9

Does anybody know if there is a practical way to determine the cause of the "Aw Snap!" message that occasionally appears on Google Chrome? Does Chrome have an error log I can refer to? I'm suspecting this issue is caused by a recursive loop in the code which is then swallowing up all the memory? Is there any way I can confirm this?

QFDev

Posted 2013-06-14T08:44:36.637

Reputation: 1 108

Possible duplicate of "Aw, Snap!" why doesn't chrome work?

– wizlog – 2018-01-09T16:03:42.757

Related: How to get more info when the “Aw Snap” screen shows up in Chrome?

– kenorb – 2018-09-17T14:36:30.983

Answers

29

There is, see explanations here: for ordinary logging in Chrome, you could try:

vinnief

Posted 2013-06-14T08:44:36.637

Reputation: 511

2I enabled the log and upon chrome crash, it didn't logged any error at the time of crash. Is there any reference that could provide insights into the log items? – Khadim Ali – 2016-01-25T13:49:44.003

Is this chromium page about logging.h what you want?

– vinnief – 2016-01-26T20:32:11.363

Could you please include the abbreviated content of the links in this answer. It will go stale if the links die. – mafu – 2016-08-06T01:16:45.167

3The Javascript console is usually not useful in this case, as the dev tools disconnect when the page crashes. – PawnStar – 2017-07-17T15:48:11.027

1I think the first option will help isolate this problem. The dev console hangs before it can output anything of use. – QFDev – 2013-06-14T09:02:15.377

30

The offical Chrome Developers Twitter account linked to a website which helps you to debug the "Aw snap" pages: http://www.chromium.org/for-testers/enable-logging

The recommendation is to launch Chrome with these flags:

--enable-logging --v=1

If you do that, then you can grab a crash log from the file chrome_debug.log in Chrome's user data directory (in the parent directory of Default/) or in the binary build folder (out\Debug) if you are using a debug build.

Benny Neugebauer

Posted 2013-06-14T08:44:36.637

Reputation: 417

5upvote because this post mentioned --enable-logging --v=1 long before the edit to the accepted answer added it. – CAD bloke – 2017-01-13T22:31:31.750

2

The Aw, Snap! page is usually related to process segmentation fault crash which could be related to the software bug. To determine the cause, you can enable logging (as suggested in other answers) or analyse the backtrace of the core dump file (on macOS, Linux, e.g. Ubuntu).

If you don't know the cause (e.g. stack trace consist only memory addresses), you can create a new support ticket at the Chrome bug tracking system (or double-check whether there is one already). While reporting, you should upload and include Crash ID by going to chrome://crashes/ page, so memory addresses can be translated into debug symbols by the Chrome maintainers.

Alternatively you can decode crash dumps yourself.

See also: Where is Google Chrome Crash Dump Located?


To simplify above, here are the main reasons why the page can crash:

  • You have found the bug (either on the website or with the web browser it-self).

    • Website bug

      • Example: JavaScript VM reached the maximum allocated memory (out-of-memory crash).

        To check that, run DevTools and check the Memory tab. If that's the case, the code should automatically pause just before the potential out-of-memory crash (e.g. Issue 810015). If so, report the problem to the website owner, or profile the JS code to find the bug.

    • Browser bug

      • Consider disabling extensions or run in Incognito mode.
      • Consider removing cached files.
      • Report a bug.
      • Re-install the browser.
      • Use a different version of Chrome such as Chromium, Dev or Canary channel.
      • Use different browser such as Epic, Firefox, Opera, Brave, Waterfox, Torch or other.
      • If issue is repeatable, you can try to re-compile Chrome sources with debug symbols and analyse the stack trace or report it.
  • You've reached the maximum open files in your system (see: #787381).

    On Linux/Unix/macOS, to verify that, run:

    sysctl -a | grep files
    

    and check whether kern.num_files reached the limit of kern.maxfiles.

    If that's the case, increase the limit by running the following commands:

    sysctl -w kern.maxfiles=20480
    which launchctl && launchctl limit maxfiles 65536 unlimited
    which ulimit && ulimit -c unlimited
    
  • You could have some malware/virus which alters your Chrome files causing the crash.

  • You could have some hardware memory-related issue. So run some test (such as memtest).

macOS

To display logs from Chrome, run:

log stream --level debug --predicate 'processImagePath contains "Google"'

or by running Console app, where you can also check for any crash dumps (or check in ~/Library/Logs/DiagnosticReports). See: Debug “Aw, Snap!” error in Chrome


Debugging

If none of above helps, you can consider compiling Chrome from the source (takes a long time), then run directly from the Terminal. After that, each “Aw, Snap!” error should be followed by the full stack trace including functions and line in the source code file where it happened.

kenorb

Posted 2013-06-14T08:44:36.637

Reputation: 16 795