I'm working on some native c code for Android and trying to output using this code:
__android_log_write(ANDROID_LOG_INFO, "Native", "TEST LOG");
logcat within Eclipse and from the command line both fail to show the message, while showing output from calls to Log.d() from the java layer. I've verified with objdump that __android_log_write() is in the symbol table of my .so file.