From 00bef7d9919ae8d2ed7a0307971f02883c87648a Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Tue, 27 Jan 2015 14:28:48 +0100 Subject: Argh really fix issue #321 --- main/jni/jniglue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/jni/jniglue.c') diff --git a/main/jni/jniglue.c b/main/jni/jniglue.c index 85d2f2d5..12e67543 100644 --- a/main/jni/jniglue.c +++ b/main/jni/jniglue.c @@ -7,16 +7,16 @@ #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) { -- cgit v1.2.3