You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 13, 2019. It is now read-only.
when my app starts - there's so much rapid logging - it takes dotzu logger some time to catch up.
need to fix this. If I open a PR - will you consider merging?
@remirobert - this library is conflicting with another library that is unhooking the following hooks.
-> LoggerCrash.unregister()
this is called - even though - register is never called.
NSSetUncaughtExceptionHandler(nil)
signal(SIGILL, SIG_DFL)
signal(SIGABRT, SIG_DFL)
signal(SIGFPE, SIG_DFL)
signal(SIGBUS, SIG_DFL)
signal(SIGSEGV, SIG_DFL)
signal(SIGSYS, SIG_DFL)
signal(SIGPIPE, SIG_DFL)
signal(SIGTRAP, SIG_DFL)
further to investigation
remirobert/Dotzu-Objective-c#4
I drafted this code for your review
https://gist.github.com/johndpope/1dd3663a8712bb1901536a44bccd6a5a
this way - if we can get this into core library,
I can over ride this with any library that conforms to logging protocol,
protocol LogProvider {
func archiveLogs(logs: [T])
func storedDataForKey(key:String)->NSData?
func logs() -> [T]
func reset()
}
The text was updated successfully, but these errors were encountered: