Skip to content

Commit

Permalink
Use __android_log_write instead of __android_log_print
Browse files Browse the repository at this point in the history
`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.
  • Loading branch information
horenmar committed Aug 10, 2019
1 parent 378cc1a commit 46a7007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/internal/catch_debug_console.cpp
Expand Up @@ -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() );
}
}

Expand Down

0 comments on commit 46a7007

Please sign in to comment.