Use __android_log_write instead of __android_log_print

`print` version of the logging functions supports `printf`-like
formatting, which we do not use and given our current debug print
internals, will never use. This should be slightly more efficient
and expresses the intent better.
This commit is contained in:
Martin Hořeňovský 2019-08-10 14:51:38 +02:00
parent 378cc1a670
commit 46a70071a7
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
namespace Catch {
void writeToDebugConsole( std::string const& text ) {
__android_log_print( ANDROID_LOG_DEBUG, "Catch", text.c_str() );
__android_log_write( ANDROID_LOG_DEBUG, "Catch", text.c_str() );
}
}