mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 12:38:09 +00:00
TAG for android traces can be specified through JNI interface
This commit is contained in:
parent
03ce0e5b59
commit
414fcf3841
4 changed files with 10 additions and 11 deletions
|
|
@ -46,10 +46,6 @@ LOCAL_SRC_FILES := \
|
|||
ec-calibrator.c \
|
||||
linphone_tunnel.cc
|
||||
|
||||
ifndef MY_LOG_DOMAIN
|
||||
MY_LOG_DOMAIN = \"Linphone\"
|
||||
endif
|
||||
|
||||
ifndef LINPHONE_VERSION
|
||||
LINPHONE_VERSION = "Devel"
|
||||
endif
|
||||
|
|
@ -64,7 +60,6 @@ LOCAL_CFLAGS += \
|
|||
-DENABLE_TRACE \
|
||||
-DLINPHONE_VERSION=\"$(LINPHONE_VERSION)\" \
|
||||
-DLINPHONE_PLUGINS_DIR=\"\\tmp\" \
|
||||
-DLOG_DOMAIN=$(MY_LOG_DOMAIN) \
|
||||
-DHAVE_EXOSIP_TRYLOCK=1 \
|
||||
-DHAVE_EXOSIP_TLS_VERIFY_CERTIFICATE=1
|
||||
|
||||
|
|
|
|||
|
|
@ -52,6 +52,7 @@ extern "C" void libmsbcg729_init();
|
|||
#endif /*ANDROID*/
|
||||
|
||||
static JavaVM *jvm=0;
|
||||
static const char* LogDomain = "Linphone";
|
||||
|
||||
#ifdef ANDROID
|
||||
static void linphone_android_log_handler(OrtpLogLevel lev, const char *fmt, va_list args){
|
||||
|
|
@ -70,15 +71,15 @@ static void linphone_android_log_handler(OrtpLogLevel lev, const char *fmt, va_l
|
|||
vsnprintf(str, sizeof(str) - 1, fmt, args);
|
||||
str[sizeof(str) - 1] = '\0';
|
||||
if (strlen(str) < 512) {
|
||||
__android_log_write(prio, LOG_DOMAIN, str);
|
||||
__android_log_write(prio, LogDomain, str);
|
||||
} else {
|
||||
current = str;
|
||||
while ((next = strchr(current, '\n')) != NULL) {
|
||||
*next = '\0';
|
||||
__android_log_write(prio, LOG_DOMAIN, current);
|
||||
__android_log_write(prio, LogDomain, current);
|
||||
current = next + 1;
|
||||
}
|
||||
__android_log_write(prio, LOG_DOMAIN, current);
|
||||
__android_log_write(prio, LogDomain, current);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -100,8 +101,10 @@ JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *ajvm, void *reserved)
|
|||
//LinphoneFactory
|
||||
extern "C" void Java_org_linphone_core_LinphoneCoreFactoryImpl_setDebugMode(JNIEnv* env
|
||||
,jobject thiz
|
||||
,jboolean isDebug) {
|
||||
,jboolean isDebug
|
||||
,jstring jdebugTag) {
|
||||
if (isDebug) {
|
||||
LogDomain = env->GetStringUTFChars(jdebugTag, NULL);
|
||||
linphone_core_enable_logs_with_cb(linphone_android_log_handler);
|
||||
} else {
|
||||
linphone_core_disable_logs();
|
||||
|
|
|
|||
|
|
@ -72,8 +72,9 @@ abstract public class LinphoneCoreFactory {
|
|||
/**
|
||||
* Enable verbose traces
|
||||
* @param enable
|
||||
* @param tag
|
||||
*/
|
||||
abstract public void setDebugMode(boolean enable);
|
||||
abstract public void setDebugMode(boolean enable, String tag);
|
||||
|
||||
abstract public void setLogHandler(LinphoneLogHandler handler);
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -131,7 +131,7 @@ public class LinphoneCoreFactoryImpl extends LinphoneCoreFactory {
|
|||
}
|
||||
|
||||
@Override
|
||||
public native void setDebugMode(boolean enable);
|
||||
public native void setDebugMode(boolean enable, String tag);
|
||||
|
||||
@Override
|
||||
public void setLogHandler(LinphoneLogHandler handler) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue