[chromium-dev] Re: How to print out log message on Windows?

2009-09-28 Thread Evan Martin
My vague memory is that the log is written to a file on the side. Two options: - If you run it within Visual Studio, it shows up in the Output window. - There's some flag like --also-log-to-console; look in logging.cc for something about logging destinations. On Mon, Sep 28, 2009 at 7:39 AM,

[chromium-dev] Re: How to print out log message on Windows?

2009-09-28 Thread Evan Martin
Oh, and the third option of course is to find the file. I think it's called chrome_debug.log and it's written beside the binary (? it's been a long time since I last fought with this). On Mon, Sep 28, 2009 at 7:51 AM, Evan Martin e...@chromium.org wrote: My vague memory is that the log is

[chromium-dev] Re: How to print out log message on Windows?

2009-09-28 Thread Scott Violet
If it's a release build, you'll need --enable-logging. -Scott On Mon, Sep 28, 2009 at 7:39 AM, James Su su...@chromium.org wrote: Hi,   I'd like to print some log information when running Chromium on Windows. But when I ran chrome --log-level=0 in a shell, nothing was printed out. What