From 5cab3be67de503bfd70c2ea074042c2626e310af Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Sun, 26 Mar 2017 14:27:46 -0400 Subject: [PATCH 1/2] Log submission of logs. // FREEBIE --- .../src/view controllers/AdvancedSettingsTableViewController.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Signal/src/view controllers/AdvancedSettingsTableViewController.m b/Signal/src/view controllers/AdvancedSettingsTableViewController.m index 8d1c51445..304047879 100644 --- a/Signal/src/view controllers/AdvancedSettingsTableViewController.m +++ b/Signal/src/view controllers/AdvancedSettingsTableViewController.m @@ -127,6 +127,7 @@ typedef NS_ENUM(NSInteger, AdvancedSettingsTableViewControllerSection) { [tableView deselectRowAtIndexPath:indexPath animated:YES]; if ([tableView cellForRowAtIndexPath:indexPath] == self.submitLogCell) { + DDLogDebug(@"%@ Submitting debug logs", self.tag); [DDLog flushLog]; [Pastelog submitLogs]; } else if ([tableView cellForRowAtIndexPath:indexPath] == self.registerPushCell) { From ca1467ef2e8bedbc245ee96d8b469074f3929dd5 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Mon, 27 Mar 2017 09:12:39 -0400 Subject: [PATCH 2/2] Respond to CR. // FREEBIE --- .../src/view controllers/AdvancedSettingsTableViewController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/view controllers/AdvancedSettingsTableViewController.m b/Signal/src/view controllers/AdvancedSettingsTableViewController.m index 304047879..62eb6fab9 100644 --- a/Signal/src/view controllers/AdvancedSettingsTableViewController.m +++ b/Signal/src/view controllers/AdvancedSettingsTableViewController.m @@ -127,7 +127,7 @@ typedef NS_ENUM(NSInteger, AdvancedSettingsTableViewControllerSection) { [tableView deselectRowAtIndexPath:indexPath animated:YES]; if ([tableView cellForRowAtIndexPath:indexPath] == self.submitLogCell) { - DDLogDebug(@"%@ Submitting debug logs", self.tag); + DDLogInfo(@"%@ Submitting debug logs", self.tag); [DDLog flushLog]; [Pastelog submitLogs]; } else if ([tableView cellForRowAtIndexPath:indexPath] == self.registerPushCell) {