Go to the documentation of this file. 61 #ifndef DEBUGUTILS_HPP_ 62 #define DEBUGUTILS_HPP_ 72 #define DEBUGCOUT(a) if (DEBUG > (a))\ 75 #define LOGTIMESTAMPEDMSG(msg) \ 78 t.tv_sec = 0; t.tv_usec = 0; \ 79 gettimeofday(&t, NULL); \ 80 clog << t.tv_sec*1000000 + t.tv_usec<<"\t" << msg << endl;\