Skip to content

Commit 21e7940

Browse files
committed
SDK-1671-Changed log type.
1 parent 20ece20 commit 21e7940

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Branch-SDK/Branch.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,7 @@ - (void)userCompletedAction:(NSString *)action {
11351135

11361136
- (void)userCompletedAction:(NSString *)action withState:(NSDictionary *)state {
11371137

1138-
BNCLogWarning(@"'userCompletedAction' method has been deprecated. Please use BranchEvent for your event tracking use cases. You can refer to https://help.branch.io/developers-hub/docs/tracking-commerce-content-lifecycle-and-custom-events for additional information.");
1138+
NSLog(@"'userCompletedAction' method has been deprecated. Please use BranchEvent for your event tracking use cases. You can refer to https://help.branch.io/developers-hub/docs/tracking-commerce-content-lifecycle-and-custom-events for additional information.");
11391139

11401140
if (!action) {
11411141
return;
@@ -1167,7 +1167,7 @@ - (void)sendServerRequestWithoutSession:(BNCServerRequest*)request {
11671167
}
11681168

11691169
- (void)sendCommerceEvent:(BNCCommerceEvent *)commerceEvent metadata:(NSDictionary*)metadata withCompletion:(void (^)(NSDictionary *, NSError *))completion {
1170-
BNCLogWarning(@"'sendCommerceEvent' method has been deprecated. Please use BranchEvent for your event tracking use cases. You can refer to https://help.branch.io/developers-hub/docs/tracking-commerce-content-lifecycle-and-custom-events for additional information.");
1170+
NSLog(@"'sendCommerceEvent' method has been deprecated. Please use BranchEvent for your event tracking use cases. You can refer to https://help.branch.io/developers-hub/docs/tracking-commerce-content-lifecycle-and-custom-events for additional information.");
11711171
[self initSafetyCheck];
11721172
dispatch_async(self.isolationQueue, ^(){
11731173
BranchCommerceEventRequest *request = [[BranchCommerceEventRequest alloc] initWithCommerceEvent:commerceEvent metadata:metadata completion:completion];

0 commit comments

Comments
 (0)