• /
  • Log in
  • Free account

crashNow (iOS SDK API)

Syntax

crashNow;
crashNow:(NSString* __nullable)message;

Throws a demo run-time exception named NewRelicDemoException to test New Relic crash reporting.

Requirements

Requires agent version 4.83 or higher.

Description

With this method, you can throw a demo run-time exception named NewRelicDemoException with a message. This crash will appear in the Crash analysis page.

Parameters

Parameter

Description

$message

string

Optional. A message attached to the exception.

Examples

Method:

+ (void) crashNow:(NSString* __nullable)message;

Objective-C

Example:

[NewRelic crashNow];

Example with message:

[NewRelic crashNow:@"This is a test crash"];

Swift

Example:

NewRelic.crashNow()

Example with message:

NewRelic.crashNow("This is a test crash")
Create issueEdit page
Copyright © 2022 New Relic Inc.