Re: [webkit-dev] How can I get some debug infomation in MediaPlayerPrivateGStreamer.cpp

2012-04-19 Thread Terry Anderson
Are you sure that the code is even being reached? Try an ASSERT(false); to make sure. Terry On Apr 19, 2012 7:42 PM, "ZiQiangHuan" wrote: > hi, > > I build webkit with gstreamer support, but I encountered a problem when I > test with it. When I write a simple statement "printf("*\n")" in th

[webkit-dev] Some stderr output missing when using run-webkit-tests

2012-10-28 Thread Terry Anderson
Hi webkit-dev, When I include fprintf(stderr, ...) statements in WebKit code that I expect to be executed when running a set of layout tests, the summary page of run-webkit-tests will sometimes only show a subset of these statements. However, when I add a CRASH() somewhere in the code, the "missin

Re: [webkit-dev] Some stderr output missing when using run-webkit-tests

2012-10-29 Thread Terry Anderson
tests have to at least fail. It > wouldn't be hard to change that somehow ... > > -- Dirk > > On Sun, Oct 28, 2012 at 4:29 PM, Terry Anderson > wrote: > > Hi webkit-dev, > > > > When I include fprintf(stderr, ...) statements in WebKit code that I > expec

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