From ee33c10a6826476c8a37fb20990c262a8aece799 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 17 Mar 2015 16:23:41 +0100 Subject: [PATCH] Removed debug trace I pushed by mistake --- coreapi/linphonecore_jni.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/coreapi/linphonecore_jni.cc b/coreapi/linphonecore_jni.cc index 9f61b1574..49a8b133a 100644 --- a/coreapi/linphonecore_jni.cc +++ b/coreapi/linphonecore_jni.cc @@ -4586,7 +4586,6 @@ static LinphoneBuffer* create_c_linphone_buffer_from_java_linphone_buffer(JNIEnv getDataMethod = env->GetMethodID(bufferClass, "getContent", "()[B"); jsize = env->CallIntMethod(jbuffer, getSizeMethod); - ms_error("Fetched %i bytes", jsize); jdata = env->CallObjectMethod(jbuffer, getDataMethod); jcontent = reinterpret_cast(jdata); content = (uint8_t*)env->GetByteArrayElements(jcontent, NULL);