diff options
Diffstat (limited to 'app/jni')
-rw-r--r-- | app/jni/jniglue.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/jni/jniglue.c b/app/jni/jniglue.c index 85d2f2d5..c2dd9f1e 100644 --- a/app/jni/jniglue.c +++ b/app/jni/jniglue.c @@ -7,7 +7,9 @@ #include "jniglue.h" jint JNI_OnLoad(JavaVM *vm, void *reserved) { +#ifndef NDEBUG __android_log_write(ANDROID_LOG_DEBUG,"openvpn", "Loading openvpn native library $id$ compiled on " __DATE__ " " __TIME__ ); +#endif return JNI_VERSION_1_2; } |