LIB-14 Android build: Always include android/log.h not just on debug

pull/6/head
Hussein Kasem 2 years ago
parent 1270d1476e
commit 54875050e2
Signed by: huss
GPG Key ID: 9E61B9BC790E6B02

@ -6,6 +6,9 @@
#include <sstream>
#include <thread>
#ifdef ANDROID
#include <android/log.h>
#endif
// pEpLog
// ======
@ -31,10 +34,6 @@
#ifdef NDEBUG
#define pEpLog(msg) do{}while(0)
#else
#ifdef ANDROID
#include <android/log.h>
#endif
#define pEpLog(msg) \
do { \
std::stringstream msg_ss; \

Loading…
Cancel
Save