travis: add some debug traces

This commit is contained in:
Gautier Pelloux-Prayer 2016-01-15 17:11:48 +01:00
parent 6a1e42a562
commit 60053876f9
2 changed files with 2 additions and 0 deletions

View file

@ -496,6 +496,7 @@ static UICompositeViewDescription *compositeDescription = nil;
}
- (IBAction)onDeleteClick:(id)sender {
LOGI(@"onDeleteClick");
NSString *msg = [NSString stringWithFormat:NSLocalizedString(@"Do you want to delete selected messages?", nil)];
[UIConfirmationDialog ShowWithMessage:msg
cancelMessage:nil

View file

@ -130,6 +130,7 @@
[_selectedItems removeAllObjects];
[self selectToggleButton:!_toggleSelectionButton.selected]; // TODO: why do we need that?
LOGI(@"onSelectionToggle: select %@", _toggleSelectionButton.selected ? @"NONE" : @"ALL");
for (int i = 0; i < [self numberOfSectionsInTableView:self.tableView]; i++) {
for (int j = 0; j < [self tableView:self.tableView numberOfRowsInSection:i]; j++) {
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:j inSection:i];