Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ios/Cartfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github "marmelroy/Zip"
github "DaveWoodCom/XCGLogger" ~> 6.1.0
github "keymanapp/dependency-XCGLogger" "master"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want a specific tag here? The latest looks to be 7.0.1 from Feb 2020

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can stick with 'master' given we control the fork

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You use 'master' here but 'head' in oem/firstvoices/ios/Cartfile?

github "keymanapp/dependency-XCGLogger" "master"

vs

github "keymanapp/dependency-XCGLogger" "head"

Can we use the same in both places please?

github "devicekit/DeviceKit" ~> 5.0
github "ashleymills/Reachability.swift"
github "getsentry/sentry-cocoa" ~> 6.2.1
github "getsentry/sentry-cocoa" ~> 8.7.0
4 changes: 2 additions & 2 deletions ios/Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github "DaveWoodCom/XCGLogger" "6.1.0"
github "ashleymills/Reachability.swift" "v5.1.0"
github "devicekit/DeviceKit" "5.0.0"
github "getsentry/sentry-cocoa" "6.2.1"
github "getsentry/sentry-cocoa" "8.7.0"
github "keymanapp/dependency-XCGLogger" "57a7b975dbb6fe4fe90cef3d1bc52b8adbd89113"
github "marmelroy/Zip" "2.1.2"
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public class SentryManager {
public static func breadcrumbAndLog(crumb: Sentry.Breadcrumb, logLevel: XCGLogger.Level? = nil) {
// Guarded in case a library consumer decides against initializing Sentry.
if _started {
SentrySDK.addBreadcrumb(crumb: crumb)
SentrySDK.addBreadcrumb(crumb)
}

let level = logLevel ?? mapLoggingLevel(crumb.level)
Expand All @@ -193,7 +193,7 @@ public class SentryManager {
}

public static func forceError() {
SentrySDK.addBreadcrumb(crumb: Sentry.Breadcrumb(level: .info, category: "Deliberate testing error"))
SentrySDK.addBreadcrumb(Sentry.Breadcrumb(level: .info, category: "Deliberate testing error"))
SentrySDK.crash()
}
}
4 changes: 2 additions & 2 deletions oem/firstvoices/ios/Cartfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
github "DaveWoodCom/XCGLogger" ~> 6.1.0
github "keymanapp/dependency-XCGLogger" "master"
github "devicekit/DeviceKit" ~> 5.0
github "ashleymills/Reachability.swift"
github "getsentry/sentry-cocoa" ~> 6.2.1
github "getsentry/sentry-cocoa" ~> 8.7.0
4 changes: 2 additions & 2 deletions oem/firstvoices/ios/Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
github "DaveWoodCom/XCGLogger" "6.1.0"
github "ashleymills/Reachability.swift" "v5.1.0"
github "devicekit/DeviceKit" "5.0.0"
github "getsentry/sentry-cocoa" "6.2.1"
github "getsentry/sentry-cocoa" "8.7.0"
github "keymanapp/dependency-XCGLogger" "57a7b975dbb6fe4fe90cef3d1bc52b8adbd89113"