Add String description in log arguments (#6961)
This commit is contained in:
parent
cab863d62f
commit
247d8371d9
1 changed files with 2 additions and 2 deletions
|
|
@ -157,7 +157,7 @@ class NotificationService: UNNotificationServiceExtension {
|
|||
os_log(
|
||||
OSLogType.default,
|
||||
"Mattermost Notifications: notification receipt failed with status %{public}@. Will call sendMessageIntent",
|
||||
httpResponse.statusCode
|
||||
String(describing: httpResponse.statusCode)
|
||||
)
|
||||
self.sendMessageIntent(notification: self.bestAttemptContent!)
|
||||
return
|
||||
|
|
@ -172,7 +172,7 @@ class NotificationService: UNNotificationServiceExtension {
|
|||
os_log(
|
||||
OSLogType.default,
|
||||
"Mattermost Notifications: receipt retrieval failed. Retry %{public}@",
|
||||
self.retryIndex
|
||||
String(describing: self.retryIndex)
|
||||
)
|
||||
self.fetchReceipt(ackNotification)
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue