Serialize logs in the Python wrapper.

This commit is contained in:
Ghislain MARY 2014-08-08 16:23:24 +02:00
parent 211b56c29f
commit 9c3f4771a9
2 changed files with 2 additions and 0 deletions

View file

@ -83,6 +83,7 @@ blacklisted_functions = [
'linphone_core_payload_type_enabled',
'linphone_core_payload_type_is_vbr',
'linphone_core_publish',
'linphone_core_serialize_logs', # There is no use to wrap this function
'linphone_core_set_log_file', # There is no use to wrap this function
'linphone_core_set_log_handler', # Hand-written but put directly in the linphone module
'linphone_core_set_log_level', # There is no use to wrap this function

View file

@ -78,6 +78,7 @@ static void pylinphone_module_log_handler(OrtpLogLevel lev, const char *fmt, va_
}
static void pylinphone_init_logging(void) {
linphone_core_serialize_logs();
linphone_core_set_log_handler(pylinphone_module_log_handler);
linphone_core_set_log_level(ORTP_MESSAGE|ORTP_WARNING|ORTP_ERROR|ORTP_FATAL);
}