diff --git a/build/vsx/LibLinphoneTester-wp8/LibLinphoneTester-wp8.v11.suo b/build/vsx/LibLinphoneTester-wp8/LibLinphoneTester-wp8.v11.suo index 1d1b41f17..f4ee72064 100644 Binary files a/build/vsx/LibLinphoneTester-wp8/LibLinphoneTester-wp8.v11.suo and b/build/vsx/LibLinphoneTester-wp8/LibLinphoneTester-wp8.v11.suo differ diff --git a/build/vsx/LibLinphoneTester-wp8/LibLinphoneTester-wp8/Assets/multi_account_lrc b/build/vsx/LibLinphoneTester-wp8/LibLinphoneTester-wp8/Assets/multi_account_lrc index 4a42f5e6d..9fa381b98 100644 --- a/build/vsx/LibLinphoneTester-wp8/LibLinphoneTester-wp8/Assets/multi_account_lrc +++ b/build/vsx/LibLinphoneTester-wp8/LibLinphoneTester-wp8/Assets/multi_account_lrc @@ -29,8 +29,8 @@ passwd=secret realm="sip.example.org" [proxy_0] -reg_proxy=sip2.linphone.org;transport=tcp -reg_route=sip2.linphone.org;transport=tcp +reg_proxy=sip2.linphone.org +reg_route=sip2.linphone.org reg_identity=sip:pauline@sip.example.org reg_expires=3600 reg_sendregister=1 diff --git a/build/vsx/LibLinphoneTester/linphone-tester-native.cpp b/build/vsx/LibLinphoneTester/linphone-tester-native.cpp index 7d83518b3..79c85e441 100644 --- a/build/vsx/LibLinphoneTester/linphone-tester-native.cpp +++ b/build/vsx/LibLinphoneTester/linphone-tester-native.cpp @@ -59,11 +59,8 @@ void LinphoneTesterNative::run(Platform::String^ suiteName, Platform::String^ ca wcstombs(ccasename, wscasename.c_str(), sizeof(ccasename)); if (verbose) { - ortp_set_log_level_mask(ORTP_MESSAGE|ORTP_WARNING|ORTP_ERROR|ORTP_FATAL); - } else { - ortp_set_log_level_mask(ORTP_ERROR|ORTP_FATAL); + linphone_core_enable_logs_with_cb(LinphoneNativeOutputTraceHandler); } - ortp_set_log_handler(LinphoneNativeOutputTraceHandler); CU_set_trace_handler(nativeOutputTraceHandler); liblinphone_tester_run_tests(wssuitename == all ? 0 : csuitename, wscasename == all ? 0 : ccasename); diff --git a/coreapi/linphonecore.h b/coreapi/linphonecore.h index 9c9730cd7..c440d6b7e 100644 --- a/coreapi/linphonecore.h +++ b/coreapi/linphonecore.h @@ -850,7 +850,7 @@ typedef void * (*LinphoneWaitingCallback)(struct _LinphoneCore *lc, void *contex /* THE main API */ LINPHONE_PUBLIC void linphone_core_enable_logs(FILE *file); -void linphone_core_enable_logs_with_cb(OrtpLogFunc logfunc); +LINPHONE_PUBLIC void linphone_core_enable_logs_with_cb(OrtpLogFunc logfunc); void linphone_core_disable_logs(void); const char *linphone_core_get_version(void); const char *linphone_core_get_user_agent_name(void);