1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2026-03-26 06:00:07 +01:00

Add more comments

This commit is contained in:
2025-11-01 17:41:45 +01:00
parent bdb70a994e
commit b83465db5a

View File

@@ -13,8 +13,11 @@ import AppKit
class CrashReporter {
/**
Initializes the crash reporting toolkit. Keep in mind that this crash reporter only keeps track of crashes,
it does not automatically send information. I have my own API for my crash report ingest system.
*/
static func initialize() {
if CrashReporter.isDebuggerAttached() {
Log.err("[CrashReporter] The debugger is attached, won't start crash reporting.")
return
@@ -67,6 +70,7 @@ class CrashReporter {
alert.close(with: .OK)
}).runModal()
// Check the outcome of what the user chose
if response == .abort {
Log.warn("[CrashReporter] The user has chosen not to send the report.")
crashReporter.purgePendingCrashReport()