From 3846e697ae774c974b07bcd1ef0bbfd3b72e3fae Mon Sep 17 00:00:00 2001 From: Bartosz Rozwarski Date: Tue, 19 Sep 2023 15:21:48 +0300 Subject: [PATCH] enable notify logs --- .../xcshareddata/swiftpm/Package.resolved | 8 ++++---- Example/WalletApp/ApplicationLayer/ProfilingService.swift | 2 ++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Example/ExampleApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Example/ExampleApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 9d6fdc5ce..60fae593d 100644 --- a/Example/ExampleApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Example/ExampleApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -15,8 +15,8 @@ "repositoryURL": "https://github.com/krzyzanowskim/CryptoSwift.git", "state": { "branch": null, - "revision": "32f641cf24fc7abc1c591a2025e9f2f572648b0f", - "version": "1.7.2" + "revision": "db51c407d3be4a051484a141bf0bff36c43d3b1e", + "version": "1.8.0" } }, { @@ -69,8 +69,8 @@ "repositoryURL": "https://github.com/getsentry/sentry-cocoa.git", "state": { "branch": null, - "revision": "04bee4ad86d74d4cb4d7101ff826d6e355301ba9", - "version": "8.9.4" + "revision": "14aa6e47b03b820fd2b338728637570b9e969994", + "version": "8.12.0" } }, { diff --git a/Example/WalletApp/ApplicationLayer/ProfilingService.swift b/Example/WalletApp/ApplicationLayer/ProfilingService.swift index 1e87c8a0d..5fade9146 100644 --- a/Example/WalletApp/ApplicationLayer/ProfilingService.swift +++ b/Example/WalletApp/ApplicationLayer/ProfilingService.swift @@ -2,6 +2,7 @@ import Foundation import Mixpanel import WalletConnectNetworking import Combine +import WalletConnectNotify final class ProfilingService { public static var instance = ProfilingService() @@ -31,6 +32,7 @@ final class ProfilingService { mixpanel.people.set(properties: ["$name": account, "account": account]) handleLogs(from: Networking.instance.logsPublisher) + handleLogs(from: Notify.instance.logsPublisher) } private func handleLogs(from publisher: AnyPublisher) {