diff --git a/src/pEpLog.cc b/src/pEpLog.cc index e8f84c0..f7f61bf 100644 --- a/src/pEpLog.cc +++ b/src/pEpLog.cc @@ -37,7 +37,7 @@ namespace pEp { #ifdef ANDROID __android_log_print(ANDROID_LOG_DEBUG, "pEpDebugLog", "%s", msg.c_str()); #else - std::cout << msg << std::endl; //std::endl also flushes + std::cerr << msg << std::endl; //std::endl also flushes #endif } }