Skip to content

Commit b1d37d8

Browse files
committed
remove unnecessary line in readme
1 parent 7436d00 commit b1d37d8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,12 @@ The iOS version should be >= 8.0 since we are using [PushKit][1].
4444
// Handle updated push credentials
4545
- (void)pushRegistry:(PKPushRegistry *)registry didUpdatePushCredentials:(PKPushCredentials *)credentials forType:(NSString *)type {
4646
// Register VoIP push token (a property of PKPushCredentials) with server
47-
NSLog(@"[AppDelegate][VoIP] didUpdatePushCredentials credentials.token = %@, type = %@", credentials.token, type);
4847
[RNVoipPushNotificationManager didUpdatePushCredentials:credentials forType:(NSString *)type];
4948
}
5049

5150
// Handle incoming pushes
5251
- (void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(NSString *)type {
5352
// Process the received push
54-
NSLog(@"[AppDelegate][VoIP] didReceiveIncomingPushWithPayload payload.dictionaryPayload = %@, type = %@", payload.dictionaryPayload, type);
5553
[RNVoipPushNotificationManager didReceiveIncomingPushWithPayload:payload forType:(NSString *)type];
5654
}
5755

0 commit comments

Comments
 (0)