You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
287 B
C++
7 lines
287 B
C++
3 years ago
|
// TODO: put into not yet existing libpEpAdapter_utils.h, to be across whole libpEpAdapter
|
||
|
#ifdef NDEBUG
|
||
|
#define pEpLog(msg) do{}while(0)
|
||
|
#else
|
||
|
#include <iostream>
|
||
|
#define pEpLog(msg) do{std::cerr << __FILE__ << "::" << __FUNCTION__ << " - " << msg << '\n';} while(0)
|
||
|
#endif
|