Skip to content

Commit

Permalink
Fix parameter in log message
Browse files Browse the repository at this point in the history
This was a mistake in 47e3a59.
  • Loading branch information
lawrence-forooghian committed Jun 28, 2023
1 parent 01b0eb7 commit f942e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ARTRealtimeChannel.m
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ - (void)transition:(ARTRealtimeChannelState)state withMetadata:(ARTChannelStateC
ARTLogDebug(self.logger, @"RT:%p C:%p Created attach retry sequence %@", _realtime, self, self.attachRetrySequence);

ARTRetryAttempt *const retryAttempt = [self.attachRetrySequence addRetryAttempt];
ARTLogDebug(self.logger, @"RT:%p C:%p Adding attach retry attempt to %@ gave %@", retryAttempt, self, self.attachRetrySequence.id, retryAttempt);
ARTLogDebug(self.logger, @"RT:%p C:%p Adding attach retry attempt to %@ gave %@", _realtime, self, self.attachRetrySequence.id, retryAttempt);

[_attachedEventEmitter emit:nil with:metadata.errorInfo];
if (self.realtime.shouldSendEvents) {
Expand Down

0 comments on commit f942e53

Please sign in to comment.