add crashlytics log for app extensions

This commit is contained in:
Danmei Chen 2020-04-07 15:27:17 +02:00
parent 3c1b675252
commit 92815c79cf

View file

@ -18,6 +18,9 @@
*/
import linphonesw
#if USE_CRASHLYTHICS
import Firebase
#endif
enum LinphoneError: Error {
case timeout
@ -63,6 +66,9 @@ class LinphoneLoggingServiceManager: LoggingServiceDelegate {
level = "unknown"
}
#if USE_CRASHLYTHICS
Crashlytics.crashlytics().log("\(level) [\(domain)] \(message)\n")
#endif
NSLog("\(level) [\(domain)] \(message)\n")
}
}