First make sure you link against the logging library in your Android.mk file:
LOCAL_LDLIBS := -llog
Then use one of the following __android_log_print() calls:
#include <android/log.h>
#define TAG "MY LOG"
__android_log_print(ANDROID_LOG_VERBOSE, TAG, "The valu...