Hi,

take a look at src\base\logging.h.
It's in base, which means that you can include it almost anywhere
without feeling guilty.

It gives you, among other things:

DLOG - TRACE equivalent
LOG - TRACE that also works in release builds
DLOG_IF, LOG_IF - conditional TRACEs
DCHECK - ASSERT equivalent
CHECK - ASSERT that also works in release builds
NOTREACHED - __assume(0) equivalent

All of them are nicely documented through comments in that file.

On Sep 29, 1:47 am, HLS <[EMAIL PROTECTED]> wrote:
> What it the TRACE equivalent under the Chrome compiling setup?
>
> I don't want to introduce any headers that are not expected.
>
> What I want to trace is the flow of some threads dispatch task so I
> can fix some sychronization issues (between the DownloadManager and
> DownloadFileManager threads).
>
> Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Chromium-dev" group.
To post to this group, send email to chromium-dev@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/chromium-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to