From ed369436fbf7bbdda1b5c5a3c3a6d70b38486db0 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Thu, 22 Jun 2017 13:24:53 -0400 Subject: [PATCH] Reduce chattiness of logs; increase log file sizes. // FREEBIE --- src/Contacts/TSThread.m | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Contacts/TSThread.m b/src/Contacts/TSThread.m index 7adb7d197..8715f8f0a 100644 --- a/src/Contacts/TSThread.m +++ b/src/Contacts/TSThread.m @@ -289,7 +289,6 @@ NS_ASSUME_NONNULL_BEGIN OWSAssert(interaction); if (interaction.isDynamicInteraction) { - DDLogDebug(@"%@ not showing dynamic interaction in inbox: %@", self.tag, interaction.debugDescription); return NO; } @@ -298,15 +297,11 @@ NS_ASSUME_NONNULL_BEGIN if (errorMessage.errorType == TSErrorMessageNonBlockingIdentityChange) { // Otherwise all group threads with the recipient will percolate to the top of the inbox, even though // there was no meaningful interaction. - DDLogDebug( - @"%@ not showing nonblocking identity change in inbox: %@", self.tag, errorMessage.debugDescription); return NO; } } else if ([interaction isKindOfClass:[TSInfoMessage class]]) { TSInfoMessage *infoMessage = (TSInfoMessage *)interaction; if (infoMessage.messageType == TSInfoMessageVerificationStateChange) { - DDLogDebug( - @"%@ not showing verification state change in inbox: %@", self.tag, infoMessage.debugDescription); return NO; } }