One can remove all calls to printf() using #define printf. What if I have a lot of debug prints like std::cout << x << endl; ? How can I quickly switch off cout << statements in a single file using preprocessor?
|
1
|
|
||
|
|
|
|
NullStream can be a good solution if you are looking for something quick that removes debug statements. However I would recommend creating your own class for debugging, that can be expanded as needed when more debug functionality is required:
This is a simple setup that can do what you want initially, plus it has the added benefit of letting you add functionality such as debug levels etc.. |
|||
|
|
|
|
You may just replace
This way, it works with both |
|||
|
|
|
|
As "unwind" already said, the quick solution is a do-nothing stream. There are better implementations though:
You still have a slight issue with
|
||
|
|
|
|
As a general principle logging to stdout should be avoided - far better to log to a logfile, and then you can use standard configuration tools to change log levels, or turn it off altogether. Just my $0.02..... |
||
|
|
|
|
You can probably do a preprocessor hack that defines a new stream-like class, with an instance named Something like
This is quite the hack though, it's (far) better to go through your source and add proper support for logging. |
||
|
|
|
|
Substitute your debug output statements with something like this:
Then you can define macros accordingly:
|
||||||
|
