Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Strange error while sending report to QuincyServer #2

Open
varuzhnikov opened this issue Nov 30, 2012 · 1 comment
Open

Strange error while sending report to QuincyServer #2

varuzhnikov opened this issue Nov 30, 2012 · 1 comment

Comments

@varuzhnikov
Copy link

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?

kstenerud pushed a commit that referenced this issue Sep 12, 2013
@kattrali
Copy link
Contributor

Fixed by #76

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants