Skip to content

Commit bf3302f

Browse files
authored
Develop (#2)
* Added objc support. * removed log statements
1 parent 9eed849 commit bf3302f

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

Sources/SegmentAppsFlyer/AppsFlyerDestination.swift

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,12 @@ extension AppsFlyerDestination: AppsFlyerLibDelegate {
207207
analytics?.track(name: "Organic Install")
208208
}
209209
} else {
210-
analytics?.log(message: "Not First Launch")
211210
}
212211

213212
}
214213

215214
public func onConversionDataFail(_ error: Error) {
216-
analytics?.log(message: "\(error)")
215+
217216
}
218217

219218

@@ -241,7 +240,7 @@ extension AppsFlyerDestination: AppsFlyerLibDelegate {
241240

242241

243242
public func onAppOpenAttributionFailure(_ error: Error) {
244-
analytics?.log(message: "\(error)")
243+
245244
}
246245
}
247246

@@ -256,16 +255,12 @@ extension AppsFlyerDestination: VersionedPlugin {
256255
extension AppsFlyerDestination: DeepLinkDelegate, UIApplicationDelegate {
257256

258257
public func didResolveDeepLink(_ result: DeepLinkResult) {
259-
analytics?.log(message: "AppsFlyer Deeplink Result: \(result)")
260258
switch result.status {
261259
case .notFound:
262-
analytics?.log(message: "AppsFlyer: Deep link not found")
263260
return
264261
case .failure:
265-
analytics?.log(message: "AppsFlyer: Deep link failure!")
266262
return
267263
case .found:
268-
analytics?.log(message: "AppsFlyer Deep link found")
269264
}
270265

271266
guard let deepLinkObj:DeepLink = result.deepLink else { return }

0 commit comments

Comments
 (0)