Add Tester domain to log

This commit is contained in:
Benjamin Reis 2017-01-13 14:58:31 +01:00
parent 988ab0e609
commit 17584b233c

View file

@ -31,12 +31,12 @@
}
- (void)setupLogging {
[Log enableLogs:0];
[Log enableLogs:ORTP_DEBUG];
linphone_core_enable_log_collection(NO);
}
void tester_logs_handler(int level, const char *fmt, va_list args) {
linphone_iphone_log_handler(NULL, level, fmt, args);
linphone_iphone_log_handler("Tester", level, fmt, args);
}
- (void)viewDidLoad {