How to enable logging for Google Chrome in Ubuntu 12.04?

19,066

Solution 1

It seems likely that you're not looking in the right place for the log file.

When you run google-chrome --enable-logging --v=1, the log file will be created inside ~/.config/google-chrome (where ~ represents your home folder). If you're using Nautilus (the graphical file browser), you'll have to press Ctrl+H or click View > Show Hidden Files to see files and folders that start with ., such as the .config folder.

Or, if you're using Chromium rather than Chrome and you run chromium-browser --enable-logging --v=1, the log file will be created inside ~/.config/chromium.

If you want to send all the output of a command to a file, including error output, use the &> redirection operator instead of just >. So you could run google-chrome &> output.txt.

edit

you can also see your crashes reports at chrome://crashes if logging was enabled before

Solution 2

Another hit is to redirect to stderr

--enable-logging=stderr --v=1
Share:
19,066

Related videos on Youtube

skytreader
Author by

skytreader

Chocolate-consuming, code-churning creature. Check my code at GitHub. #SOreadytohelp ... I hope I'm doing this right!

Updated on September 18, 2022

Comments

  • skytreader
    skytreader almost 2 years

    I'm trying to capture the logs for a certain bug I'm having with Google Chrome. However, I can't find/enable logs for GC.

    According to this Chromium project page, I just need to add the flags --enable-logging --v=1 and a chrome_debug.log file will appear in my user data directory. However, after running GC (and closing through the 'X' title bar button) there is no chrome_debug.log file in the specified directory. I even tried running as root as it may have something to do with write permissions but GC refuses to start as root.

    Another thing, GC also prints messages when invoked from command line. I tried capturing this and redirecting them to a file via $ google-chrome > today.log but the messages are still printed in the command line and the file I specify gets created but remains empty.

    Note that I can't just copy-paste the messages printed on terminal after my bug occurs as the bug freezes up my whole system that, when it occurs, my only option is to turn off my computer straight via the power button. I've seen a few similar bugs already posted but I find that they don't exactly describe my situation so I'd really like to get some logs for this.

    So how do I enable logging or, at least, get those terminal messages in a file?

    • Admin
      Admin over 11 years
      I just tried google-chrome --enable-logging --v=1 and I do see /home/vasa1/.config/google-chrome/chrome_debug.log. This is with the latest Chrome stable and Lubuntu 12.10.
    • skytreader
      skytreader over 11 years
      Meh...now that I checked manually, there it is indeed. I was doing locate *.log | grep chrome where it doesn't turn up, even after updatedb. Question closed. Thanks.
  • skytreader
    skytreader over 11 years
    Yah. I didn't look manually but used locate which wasn't able to find it (see my comment above). Thanks.