Browse Source

android_log cleanup.

Mark Sibly 7 years ago
parent
commit
9ebbca81f5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/monkey/native/bbmonkey.cpp

+ 1 - 1
modules/monkey/native/bbmonkey.cpp

@@ -15,7 +15,7 @@ void bbMain();
 #include <android/log.h>
 #include <android/log.h>
 
 
 void bb_print( bbString str ){
 void bb_print( bbString str ){
-	__android_log_print( ANDROID_LOG_INFO,"MX2","%s",str.c_str() );
+	__android_log_write( ANDROID_LOG_INFO,"MX2",str.c_str() );
 }
 }
 
 
 void bb_printf( const char *fmt,... ){
 void bb_printf( const char *fmt,... ){