From c1190b1b67344407132bb2d9337b0d7bc247ffd8 Mon Sep 17 00:00:00 2001 From: Richard Adem Date: Mon, 19 Jun 2023 13:08:17 +1000 Subject: [PATCH] Update SentryClient+Live.swift Fix for extraneous argument label 'crumb:' in call --- Sources/swift-log-sentry/SentryClient+Live.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/swift-log-sentry/SentryClient+Live.swift b/Sources/swift-log-sentry/SentryClient+Live.swift index 7d72d95..04637b7 100644 --- a/Sources/swift-log-sentry/SentryClient+Live.swift +++ b/Sources/swift-log-sentry/SentryClient+Live.swift @@ -2,6 +2,6 @@ import Sentry extension SentryClient { public static let live = SentryClient { crumb in - SentrySDK.addBreadcrumb(crumb: crumb) + SentrySDK.addBreadcrumb(crumb) } }