mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 12:17:11 +01:00 
			
		
		
		
	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:
		| @@ -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() ); | ||||
|         } | ||||
|     } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Martin Hořeňovský
					Martin Hořeňovský