Can logcat be used to log NDK code in Android? Or what are logging options from NDK?
You can use the Android logging
#include <android/log.h>
#define APPNAME "MyApp"
__android_log_print(ANDROID_LOG_VERBOSE, APPNAME, "My Log");
Also Make sure you also link against the logging library, in your Android.mk file:
LOCAL_LDLIBS := -llog
It has already been discussed at Any simple way to log in Android NDK code?
If you are using the newer Android Studio versions (2.2+) that use CMake, then you will find the following automatically added to your CMakeLists.txt file when you generate a new project with C++ support:
find_library( # Sets the name of the path variable.
log-lib
# Specifies the name of the NDK library that
# you want CMake to locate.
log )
and
target_link_libraries( # Specifies the target library.
your-lib1
your-lib2
...
# Links the target library to the log library
# included in the NDK.
${log-lib} )