views:

254

answers:

2

I am trying to view a page in Google Chrome, but I get the message: "Aw, Snap! Something went wrong while displaying this web page". Is there a way to get more information about what went wrong?

Update: the "Aw, Snap" remark is shown only when the JavaScript console is visible.

+1  A: 

That page means that something inside the browser went wrong, so maybe run the browser under a debugger?

Kinopiko
+2  A: 

I don't know if you'll see much in the non-debug build but try turning on logging and see what shows up:

Launch Chrome with these flags: --enable-logging --log-level=0

On Vista your log file would be in: C:\Users\<username>\AppData\Local\Google\Chrome\User Data\Default

On XP your log file would be in: C:\Documents and Settings\<username>\Local Settings\Application Data\Google\Chrome\User Data\Default

See http://www.chromium.org/for-testers/enable-logging for details.

Pierre-Antoine LaFayette
Thanks a lot. Regrettably, the log doesn't contain anything helpful. The only thing I see is: [1640:3808:4285503:INFO:user_script_slave.cc(179)] Injected 0 user scripts into <the .xml file I'm trying to load>
Dimitri C.
If you build the debug version you'd probably be able to get a callstack.
Pierre-Antoine LaFayette