Your app will crash one day. Be prepared to collect crash data automatically, because not every user is a techno wizard capable of sending you .crash
files from the built-in Console app.
- macOS 10.12+
- Xcode 10.2+
- Swift 5+
For the optional server endpoint script, you'll need PHP 7.x.
github "CleanCocoa/CrashReporter"
pod 'CrashReporterMac'
.package(url: "https://github.com/CleanCocoa/CrashReporter", from: "0.2.0")
If you want to customize the UI, checkout the source and copy all code from CrashReporter/
into your project.
You need a server endpoint to receive crash reports.
The framework does not care what the server does:
- You can email the incoming crash report from your server, or
- you can store the crash report as a timestamped file on disk for later reference, of
- you can store the crash report in a database.
The crash reporter framework will perform a HTTP POST request:
- The
User-Agent
metadata is set to"\(APP_NAME)-\(VERSION)"
if the values are found in the app's bundle, e.g."Sherlock-2.0"
. - The
userEmail
variable is either left out or set to the email entered by the user. - The
crashlog
variable is set to the contents of the.crash
file the user submits. - The server response will be ignored.
You can roll your own endpoint as long as its URL is reachable from the app.
Or you can use the simple endpoint shipped in this repository! It's located at php/index.php
. This PHP server script will attempt to email you the crash log as an attachment with a timestamp, e.g. 20190701204853 Sherlock-2.0.crash
(where the timestamp signifies the ISO-formatted date 2019-07-01 20:48:52). If the user enters her email address, she'll receive a copy as CC by default. You can toggle this in the PHP script's frontmatter.
To run the script on your local machine for quick testing, run:
$ php -S 127.0.0.1:3333 php/index.php
Then use URL(string: "http://127.0.0.1:3333/")
in your Swift code for the endpoint.
See the code in Example/
, which is part of the Xcode project.
You can use the framework as-is in your app to check for crash reports:
import CrashReporter
let crashReporterURL = URL(string: "http://127.0.0.1:3333/")!
let crashReporter = CrashReporter(
crashReporterURL: crashReporterURL,
privacyPolicyURL: URL(string: "https://example.com/privacy-policy")!)
// Run the check in the background and display
// a crash reporter window if needed
crashReporter.check()
If you allow the user to tick "Send crash reports automatically" in the crash reporter window, you should add a similar option to your app's preference pane to enable undoing this setting.
Refer to DefaultsKeys.sendCrashLogsAutomaticallyKey
.
If you want to employ Cocoa Bindings to configure a "Send crash reports automatically" checkbox in your preference panes or main menu, then you can create a simple KVC-compliant wrapper in your classes:
// Assuming this is loaded from a Nib where you set an object of this type as the
// target for "Value" Cocoa Bindings.
class PreferenceController: NSViewController {
let crashReporter: CrashReporter = // ... setup before ...
// Cocoa bindings path is `self.sendCrashReportsAutomatically`
@objc public dynamic var sendCrashReportsAutomatically: Bool {
get {
return crashReporter.sendCrashReportsAutomatically
}
set {
crashReporter.sendCrashReportsAutomatically = newValue
}
}
}
CrashReporter.check()
is the default call that displays the crash reporter window for the current app if needed, and uploads the crash report to the server.CrashReporter.check(appName:collectEmailAddress:alwaysShowCrashReporterWindow:)
allows you to control the app name for which the reporter searches.crash
files. SetcollectEmailAddress
to false if you don't want to collect the email address of the user to get back to them. SetalwaysShowCrashReporterWindow
totrue
if you always want to show the crash reporter window instead of letting the user pick when she sees the window.CrashReporter.sendCrashReportsAutomatically
exposes the user setting of sending reports automatically. Useful for preference panes.
If you don't change the UserDefaults
keys for the crash reporter settings, use the various DefaultsKeys.standard
properties in your app to look up the values:
emailAddressKey
is"CRR_emailAddress"
, where the email address of the user is storedsendCrashLogsAutomaticallyKey
is"CRR_sendCrashLogsAutomatically"
-- use this for your preference panes to toggle automatically sending crash reportslastSeenCrashLogTimeSince1970Key
is"CRR_lastSeenCrashLogTimeSince1970"
lastSeenCrashLogMD5Key
is"CRR_lastSeenCrashLogMD5"
The whole project is distributed under the MIT license. See the LICENSE file for reference.
A quick overview:
- The Swift code is adapted from Brent Simmons's NetNewsWire 5, Copyright © Brent Simmons 2017-2019. All rights reserved.
- Changes in this repository are Copyright © Christian Tietze 2019. All rights reserved.
- The PHP server code is Copyright © Christian Tietze 2019. All rights reserved.