Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In .NET I would use System.Diagnostics.Trace...

What would I use in C or C++ ?

right now I have a macro defined:

diagnostics ON:

#define DIAG(A) { printf(A); }

debugging off:

#define DIAG(A) { if(FALSE) {}}

Is there a standard way?

share|improve this question
1  
Note that printf(A) is not safe, you should have used printf("%s", A);. – Vlad Mar 27 '10 at 20:30

1 Answer

up vote 1 down vote accepted

It depends on your environment. In Windows, I'd just use OutputDebugString. There's more complicated and configurable ways, but I've never needed it myself.

Not sure if there's a standard on *nix, though. The relatively few times I've written *nix C code, I use a DEBUG envvar and printf.

share|improve this answer
On unix, you just have to use stderr. Use cerr << A instead of printf(A). As a bonus, this is type safe. – Vlad Mar 27 '10 at 20:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.