How would one write logs from inside Native code in Android (NDK)? What are the available options? For example, can logcat be used from inside of NDK to write logs? Or since its more upper level in android, it can not be accessible from NDK?
At the moment I am just aware of writing times from C code with:
millis = System.currentTimeMillis();
And with function that would write this time plus any messages to a custom log file.