From db1287ea442bdf119a0d1233a29779ba0aba3737 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Tue, 22 Oct 2024 18:18:41 +0300 Subject: [PATCH] Converted error message to debug message --- app/src/main/cpp/baresip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/cpp/baresip.c b/app/src/main/cpp/baresip.c index f277eafd..41976203 100644 --- a/app/src/main/cpp/baresip.c +++ b/app/src/main/cpp/baresip.c @@ -259,7 +259,7 @@ static void event_handler(enum ua_event ev, struct bevent *event, void *arg) JNIEnv *env; jint res = (*javaVM)->GetEnv(javaVM, (void**)&env, JNI_VERSION_1_6); if (res != JNI_OK) { - LOGW("failed to get javaVM environment, ErrorCode = %d\n", res); + LOGD("failed to get javaVM environment, ErrorCode = %d\n", res); res = (*javaVM)->AttachCurrentThread(javaVM, &env, NULL); if (JNI_OK != res) { LOGE("failed to AttachCurrentThread, ErrorCode = %d\n", res);