From 3579621db6f775e7d7355ae324d78dca633c2c26 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Thu, 10 May 2018 17:25:26 -0400 Subject: [PATCH] Improve logging around home view selection. --- Signal/src/ViewControllers/HomeView/HomeViewController.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Signal/src/ViewControllers/HomeView/HomeViewController.m b/Signal/src/ViewControllers/HomeView/HomeViewController.m index 8974bd59a..6b4b7cfb7 100644 --- a/Signal/src/ViewControllers/HomeView/HomeViewController.m +++ b/Signal/src/ViewControllers/HomeView/HomeViewController.m @@ -905,6 +905,8 @@ NSString *const kArchivedConversationsReuseIdentifier = @"kArchivedConversations - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { + DDLogInfo(@"%@ %s %zd %zd", self.logTag, __PRETTY_FUNCTION__, indexPath.row, indexPath.section); + if ([self isIndexPathForArchivedConversations:indexPath]) { [self showArchivedConversations]; return;