Skip to main content

Setting Up Backtrace for macOS

Add Backtrace to your macOS project to automatically detect and report handled and unhandled exceptions, errors, and crashes that occur in your apps written in Swift or Objective-C.

The Backtrace Cocoa SDK supports iOS, macOS, and tvOS. This guide covers macOS-specific setup. If you're looking for iOS setup, see Setting Up Backtrace for iOS.

After you've completed the steps on this page, the Backtrace client will be installed and setup with the default configuration settings. Crash and error reports will include the following metadata:

  • system
  • machine
  • signal
  • exception
  • thread
  • process

Supported Platforms

  • macOS 12+

What You'll Need

  • A Backtrace account (log in or sign up for a free trial license).
  • Your subdomain name (used to connect to your Backtrace instance). For example, https://example-subdomain.sp.backtrace.io.
  • A Backtrace project and a submission token.

System Requirements

  • Xcode 10 or above

Install the SDK

You can install the SDK with Swift Package Manager (SPM) or CocoaPods. The SDK is the same backtrace-cocoa package used for iOS — it includes macOS support out of the box.

  1. In Xcode select File > Add Packages, then search for and add https://github.com/backtrace-labs/backtrace-cocoa.git.
  2. Verify your project Package Dependencies list for backtrace-cocoa.
  3. Add Backtrace to your macOS target's Frameworks, Libraries, and Embedded Content.

Initialize the Backtrace Client

To initialize BacktraceClient, create a BacktraceCredentials object with the name of your subdomain and submission token, and supply it as a parameter in the BacktraceCredentials constructor.

On macOS, you initialize the Backtrace client in applicationDidFinishLaunching(_:) (an NSApplicationDelegate method) instead of the iOS application(_:didFinishLaunchingWithOptions:):

import Cocoa
import Backtrace

@main
class AppDelegate: NSObject, NSApplicationDelegate {

func applicationDidFinishLaunching(_ aNotification: Notification) {
let backtraceCredentials = BacktraceCredentials(
submissionUrl: URL(string: "https://submit.backtrace.io/{subdomain-name}/{submission-token}/plcrash")!)
let backtraceConfiguration = BacktraceClientConfiguration(credentials: backtraceCredentials)
BacktraceClient.shared = try? BacktraceClient(configuration: backtraceConfiguration)
}
}

Catch Uncaught macOS Exceptions

By default, the macOS runtime does not forward all uncaught exceptions to crash reporters. To ensure that Backtrace captures these additional exceptions, you have two options:

Set NSPrincipalClass in your app's Info.plist to Backtrace.BacktraceCrashExceptionApplication. This replaces the default NSApplication with a Backtrace subclass that automatically intercepts and reports uncaught exceptions.

<key>NSPrincipalClass</key>
<string>Backtrace.BacktraceCrashExceptionApplication</string>
info

BacktraceCrashExceptionApplication is an NSApplication subclass that overrides reportException(_:) to automatically send uncaught exceptions to your Backtrace instance. This is macOS-only and has no iOS equivalent.

Option 2: Enable NSApplicationCrashOnExceptions

If you cannot change NSPrincipalClass (for example, if you already use a custom NSApplication subclass), you can instead opt into crashing on exceptions so that PLCrashReporter captures them:

UserDefaults.standard.register(defaults: ["NSApplicationCrashOnExceptions": true])
caution

When using NSApplicationCrashOnExceptions, your app will terminate on uncaught exceptions. Make sure to use @try ... @catch blocks for any exceptions you want to handle gracefully.

Upload Debug Symbols

After compiling your application with the backtrace-cocoa library, make sure symbol files are generated in dSYM format and are uploaded to Backtrace to symbolicate incoming crashes.

For information on how to upload debug symbols, see Symbol Formats and Upload Methods.

Set Debug Symbol Format

When building your macOS app in Xcode, make sure to configure the build settings to generate dSYM files for any build that you want to debug with Backtrace. By default, Xcode may only generate DWARF files.

To generate debug symbols in dSYM format:

  1. In Xcode, go to your project target's Build Settings.
  2. Under Build Options, set Debug Information Format to DWARF with dSYM File.

Find Debug Symbols

To find dSYM files while building the project:

  1. In Xcode, build your project.
  2. From the Products folder, select your macOS app.
  3. Right-click, then click Show in Finder.
  4. Zip all the dSYM files and upload to Backtrace.

To find dSYM files while archiving the project:

  1. In Xcode, archive your project.
  2. To open the Archives organizer, go to Window > Organizer and click Archives.
  3. Select your macOS app, then click Show in Finder. dSYMs are stored in a .xcarchive file.
  4. Right-click, then click Show Package Contents.
  5. Search for the dSYMs folder.
  6. Zip all the dSYM files and upload to Backtrace.

Verify the Setup

At this point, you've installed and setup the Backtrace client to automatically capture exceptions, errors, and crashes in your macOS app.

To test the integration, throw an error or exception to send a report to your Backtrace instance.

Send an Error/NSError

@objc func send(completion: ((BacktraceResult) -> Void))

Send an NSException

@objc func send(exception: NSException, completion: ((BacktraceResult) -> Void))

Differences from iOS

The following table summarizes the key differences between the macOS and iOS setup:

FeaturemacOSiOS
Minimum OS versionmacOS 12+iOS 13+
App delegate methodapplicationDidFinishLaunching(_:)application(_:didFinishLaunchingWithOptions:)
App delegate protocolNSApplicationDelegateUIApplicationDelegate
Uncaught exception handlingBacktraceCrashExceptionApplication via NSPrincipalClassNot needed (UIKit forwards exceptions)
CocoaPods platformplatform :osx, '12.0'platform :ios, '13.0'
Framework importCocoa / AppKitUIKit