[webkit-dev] how could I use std::cout in webkit?

2012-11-12 Thread Zhao, Halley
Nothing shows in terminal when I added some std::cout in source code, any hints to print some log in webkit? My build command line: "./build-webkit --gtk --3d-rendering 2>&1 | tee build.log" My run command line: "./run-launcher --gtk --enable-accelerated-compositing=1 http://localhost/test.html

Re: [webkit-dev] how could I use std::cout in webkit?

2012-11-12 Thread Mikhail Naganov
Have you tried std::cerr? On Mon, Nov 12, 2012 at 10:00 AM, Zhao, Halley wrote: > Nothing shows in terminal when I added some std::cout in source code, any > hints to print some log in webkit? > > My build command line: “./build-webkit --gtk --3d-rendering 2>&1 | tee > build.log” > > My run comma

Re: [webkit-dev] how could I use std::cout in webkit?

2012-11-12 Thread Terry Anderson
If std::cerr fails, you could also try printing to a file. On Mon, Nov 12, 2012 at 10:07 AM, Mikhail Naganov wrote: > Have you tried std::cerr? > > On Mon, Nov 12, 2012 at 10:00 AM, Zhao, Halley > wrote: > > Nothing shows in terminal when I added some std::cout in source code, any > > hints to

Re: [webkit-dev] how could I use std::cout in webkit?

2012-11-12 Thread Thiago Marcos P. Santos
On Mon, Nov 12, 2012 at 12:00 PM, Zhao, Halley wrote: > Nothing shows in terminal when I added some std::cout in source code, any > hints to print some log in webkit? > > My build command line: “./build-webkit --gtk --3d-rendering 2>&1 | tee > build.log” > > My run command line: “./run-launcher --

Re: [webkit-dev] how could I use std::cout in webkit?

2012-11-12 Thread Zhao, Halley
t-dev@lists.webkit.org Subject: Re: [webkit-dev] how could I use std::cout in webkit? On Mon, Nov 12, 2012 at 12:00 PM, Zhao, Halley wrote: > Nothing shows in terminal when I added some std::cout in source code, > any hints to print some log in webkit? > > My build command line: "./build-webkit