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
I have trouble with sending reports to my hosted quincy server in virtual machine. There is my code to install KSCrash in application:didFinishLaunchingWithOptions:
id sink = [KSCrashReportSinkQuincy sinkWithURL:[NSURL URLWithString:@"http://193.168.1.6/crash-reporter/crash_v200.php"] onSuccess:^(NSString *response) {
NSLog(@"Response from quincy %@", response);
}];
BOOL installed = [KSCrash installWithCrashReportSink:sink];
if (installed) {
NSLog(@"Installed crash report");
} else {
NSLog(@"Error while installing crash report");
}
And this error message I get on a device:
Nov 30 17:58:56 unknown UIKitApplication:ru.flexis.arhdiary[0xf44e][3845] : terminate called throwing an exception
Nov 30 17:58:56 unknown ReportCrash[3850] : Formulating crash report for process arhdiary[3845]
Nov 30 17:58:56 unknown com.apple.launchd[1] : (UIKitApplication:ru.flexis.arhdiary[0xf44e]) Job appears to have crashed: Abort trap: 6
Nov 30 17:58:56 unknown SpringBoard[52] : Application 'arhdiary' exited abnormally with signal 6: Abort trap: 6
Nov 30 17:58:56 unknown librariand[3848] : client connection is invalid: Connection invalid
Nov 30 17:58:56 unknown ReportCrash[3850] : Saved crashreport to /var/mobile/Library/Logs/CrashReporter/arhdiary_2012-11-30-175856_iPad-Vitalij-Ruznikov.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
It seems like it cannot launch crash report sending. I've googled for this error message "librariand client connection is invalid: Connection invalid" but found nothing. I can open url for crash collecting in my iPad in safari browser, so quincy server is reachable. Can you help me with troubleshooting this problem, please?
The text was updated successfully, but these errors were encountered:
I have trouble with sending reports to my hosted quincy server in virtual machine. There is my code to install KSCrash in application:didFinishLaunchingWithOptions:
id sink = [KSCrashReportSinkQuincy sinkWithURL:[NSURL URLWithString:@"http://193.168.1.6/crash-reporter/crash_v200.php"] onSuccess:^(NSString *response) {
NSLog(@"Response from quincy %@", response);
}];
BOOL installed = [KSCrash installWithCrashReportSink:sink];
if (installed) {
NSLog(@"Installed crash report");
} else {
NSLog(@"Error while installing crash report");
}
There is my code to crash my app:
(void)viewDidAppear:(BOOL)animated {
NSArray *array = [NSArray array];
NSLog(@"object %@", [array objectAtIndex:0]);
[super viewDidAppear:animated];
}
And this error message I get on a device:
Nov 30 17:58:56 unknown UIKitApplication:ru.flexis.arhdiary[0xf44e][3845] : terminate called throwing an exception
Nov 30 17:58:56 unknown ReportCrash[3850] : Formulating crash report for process arhdiary[3845]
Nov 30 17:58:56 unknown com.apple.launchd[1] : (UIKitApplication:ru.flexis.arhdiary[0xf44e]) Job appears to have crashed: Abort trap: 6
Nov 30 17:58:56 unknown SpringBoard[52] : Application 'arhdiary' exited abnormally with signal 6: Abort trap: 6
Nov 30 17:58:56 unknown librariand[3848] : client connection is invalid: Connection invalid
Nov 30 17:58:56 unknown ReportCrash[3850] : Saved crashreport to /var/mobile/Library/Logs/CrashReporter/arhdiary_2012-11-30-175856_iPad-Vitalij-Ruznikov.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
It seems like it cannot launch crash report sending. I've googled for this error message "librariand client connection is invalid: Connection invalid" but found nothing. I can open url for crash collecting in my iPad in safari browser, so quincy server is reachable. Can you help me with troubleshooting this problem, please?
The text was updated successfully, but these errors were encountered: