I’m trying to integrate Sentry intro our app and everything works fine when I’m using debug or release build (not connected to debugger), but I’m not receiving any errors from TestFlight builds.
Hey, so no that is of course not intended behavior.
So we definitely have many customers that do not have this problem with this.
Can you share the code how you are setting up Sentry?
Does a simple message also not show up?
let event = Event(level: .debug)
event.message = "Test Message"
Client.shared?.send(event: event) { (error) in
// Optional callback after event has been send
}
Can you link me to your Sentry account so I can inspect what’s going on.
I got mine working, by enabling the allowSecretKey: true, in Raven.config and also added the secret access key.
Made a build on TestFlight and it worked and received all logs!
Hi @HazAT,
I tried to send some debug events and everything works perfectly. But still no crashes… Is possible that we have to do some additional setup because we have custom installation?
2018-01-09 13:53:12.410443+0100 AppName.com[329:12911] Sentry Started -- Version: 3.11.1
2018-01-09 13:53:14.187937+0100 AppName.com[329:12911] Sentry - Debug:: KSCrashHandler started
************************ Crash Handler Notice ************************
* App is running in a debugger. Masking out unsafe monitors. *
* This means that most crashes WILL NOT BE RECORDED while debugging! *
**********************************************************************
INFO : KSCrash.m (345): -[KSCrash sendAllReportsWithCompletion:]: Sending 0 crash reports
2018-01-09 13:53:14.208230+0100 AppName.com[329:12911] Sentry - Debug:: Sent 0 crash report(s)
Hey, @ran I am a bit clueless now tbh.
The log seems fine, if you can receive messages and crashes in debug it should also work on Testflight.
There must be something wrong with your setup.