X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Flog.cpp;h=ff2e163333d6c85ac50c229d33ea5307e367d0b1;hb=37b7f094e3ea502339794f64e8bad22444c6fb54;hp=97f25cc77e95a1a0cf7962b99e0af3b67557ad2a;hpb=9edb91da5754cf194637d1d7faa513719b61f9b4;p=oweals%2Fminetest.git diff --git a/src/log.cpp b/src/log.cpp index 97f25cc77..ff2e16333 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -26,6 +26,8 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "threads.h" #include "debug.h" #include "gettime.h" +#include "porting.h" +#include "config.h" std::list log_outputs[LMT_NUM_VALUES]; std::map log_threadnames; @@ -139,6 +141,9 @@ public: void printbuf() { log_printline(m_lev, m_buf); +#ifdef __ANDROID__ + __android_log_print(ANDROID_LOG_ERROR, PROJECT_NAME, "%s", m_buf.c_str()); +#endif } void bufchar(char c)