Skip to content

Commit b30349c

Browse files
committed
Fix logger messages after merge with main
1 parent d119dcb commit b30349c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/BranchSDK/Branch.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1942,16 +1942,16 @@ - (void)initUserSessionAndCallCallback:(BOOL)callCallback sceneIdentifier:(NSStr
19421942
@synchronized (self) {
19431943
if (self.deferInitForPluginRuntime) {
19441944
if (urlString) {
1945-
[[BranchLogger shared] logDebug:@"Branch init is deferred, caching link"];
1945+
[[BranchLogger shared] logDebug:@"Branch init is deferred, caching link" error:nil];
19461946
self.cachedURLString = urlString;
19471947
} else {
1948-
[[BranchLogger shared] logDebug:@"Branch init is deferred, ignoring lifecycle call without a link"];
1948+
[[BranchLogger shared] logDebug:@"Branch init is deferred, ignoring lifecycle call without a link" error:nil];
19491949
}
19501950
return;
19511951
} else {
19521952
if (!urlString && self.cachedURLString) {
19531953
urlString = self.cachedURLString;
1954-
[[BranchLogger shared] logDebug:[NSString stringWithFormat:@"Using cached link: %@", urlString]];
1954+
[[BranchLogger shared] logDebug:[NSString stringWithFormat:@"Using cached link: %@", urlString] error:nil];
19551955
}
19561956
self.cachedURLString = nil;
19571957
}

0 commit comments

Comments
 (0)