summaryrefslogtreecommitdiff
path: root/app/jni/jniglue.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/jni/jniglue.c')
-rw-r--r--app/jni/jniglue.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/jni/jniglue.c b/app/jni/jniglue.c
index d446f78c..c2dd9f1e 100644
--- a/app/jni/jniglue.c
+++ b/app/jni/jniglue.c
@@ -7,14 +7,18 @@
#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;
}
void android_openvpn_log(int level,const char* prefix,const char* prefix_sep,const char* m1)
{
+#ifndef NDEBUG
__android_log_print(ANDROID_LOG_DEBUG,"openvpn","%s%s%s",prefix,prefix_sep,m1);
+#endif
}
void Java_de_blinkt_openvpn_core_NativeUtils_jniclose(JNIEnv *env,jclass jo, jint fd) {