Skip to content

Commit

Permalink
fix: logging
Browse files Browse the repository at this point in the history
Signed-off-by: Jason C. Leach <[email protected]>
  • Loading branch information
jleach committed Nov 14, 2024
1 parent 6e705a5 commit bfb78b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/ios/AriesBifold/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ - (void)excludeDotAFJFolderFromBackup {
forKey:NSURLIsExcludedFromBackupKey
error:&error];

if (!success) {
NSLog(@"Error excluding folder %@ from backup: %@", folderName, error);
if (success) {
NSLog(@"Excluded folder %@ from backup.", folderName);
} else {
NSLog(@"Error excluding folder %@ from backup: %@", folderName, error);
}

NSLog(@"Excluded folder %@ from backup.", folderName);
}

@end

0 comments on commit bfb78b1

Please sign in to comment.