Skip to content

Commit

Permalink
Merge pull request #1780 from ably/fix-log-message
Browse files Browse the repository at this point in the history
Fix parameter in log message
  • Loading branch information
lawrence-forooghian authored Jun 29, 2023
2 parents 01b0eb7 + f942e53 commit dcc540f
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 dcc540f

Please sign in to comment.