I'd like to have the possibility to increase the verbosity for debug purposes of my program. Of course I can do that using a switch/flag during runtime. But that can be very inefficient, due to all the 'if' statements I should add to my code.
So, I'd like to add a flag to be used during compilation in order to include optional, usually slow debug operations in my code, without affecting the performance/size of my program when not needed. here's an example:
/* code */
#ifdef _DEBUG_
/* do debug operations here
#endif
so, compiling with -D_DEBUG_ should do the trick. without it, that part won't be included in my program.
Another option (at least for i/o operations) would be to define at least an i/o function, like
#ifdef _DEBUG_
#define LOG(x) std::clog << x << std::endl;
#else
#define LOG(x)
#endif
However, I strongly suspect this probably isn't the cleanest way to do that. So, what would you do instead?
LOG(x)differs in whether it defines a statement with_DEBUG_on and off meaning thatif (whatever) LOG(x)behaves differently depending on whether_DEBUG_is defined. If you do go the macro route be careful to avoid this kind of error. – Jack Aidley Feb 11 at 16:37#define LOG(x) ;or something similar. Even very primitive compiler can optimize away empty statements. The really careful approach usesdo{}while(0);. – dmckee Feb 11 at 20:16;from the_DEBUG_defined version so you writeLOG(x);in the usual fashion but it makes little difference. – Jack Aidley Feb 11 at 20:22