Browse Source

Merge pull request 'Android Build: Add android/log.h include' (#5) from android-build into Release_2.1

Reviewed-on: https://gitea.pep.foundation/pEp.foundation/libpEpAdapter/pulls/5
pull/6/head
heck 4 years ago
parent
commit
7abb32b740
  1. 4
      pEpLog.hh

4
pEpLog.hh

@ -31,6 +31,10 @@
#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