Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remote Queued Logging of Issues (not exceptions)

Tags:

ios

We're writing an application which uses our http api, and occasionally it will encounter errors, failed connections, timeouts, etc.

We'd like to, at least in beta, be able to capture these incidents, and forward them to ourselves somehow. Since obviously many of these issues could be due to the actual connection being down, this would need to queue these incidents and send them when a connection is available.

I tried googling for an answer for this but to no avail, came across a bunch of solutions which catch exceptions, but not just random "incidents" (could really just be a string we log somewhere, we'd just include all the details in it).

Short of writing my own coredata (or something) backed queue, I'm at a loss at what a solution for this could be.

Does anyone know of any libs/services which could help with this?

like image 948
piotrb Avatar asked Nov 19 '25 04:11

piotrb


1 Answers

You might want to look into Testflight, or less general purpose, Parse. Not quite sure, but maybe HockeyKit offers a solution for this, too.

like image 86
JustSid Avatar answered Nov 20 '25 19:11

JustSid