Add verbose output to "sogo-tool remove" command

pull/105/head
Francis Lachapelle 2015-09-16 11:38:25 -04:00
parent 24a3ecd2d6
commit 11d9765a69
1 changed files with 9 additions and 1 deletions

View File

@ -116,13 +116,19 @@ static NSURL *tableURL = nil;
- (void) _removeUserFolders: (NSString *) userId - (void) _removeUserFolders: (NSString *) userId
{ {
NSArray *folderPaths; NSArray *folderPaths;
NSString *path;
int count, max; int count, max;
folderPaths = [self _userFolderPaths: userId]; folderPaths = [self _userFolderPaths: userId];
max = [folderPaths count]; max = [folderPaths count];
if (max > 0) if (max > 0)
for (count = 0; count < max; count++) for (count = 0; count < max; count++)
[fm deleteFolderAtPath: [folderPaths objectAtIndex: count]]; {
path = [folderPaths objectAtIndex: count];
[fm deleteFolderAtPath: path];
if (verbose)
NSLog (@"Deleting %@", path);
}
else else
NSLog (@"No folder returned for user '%@'", userId); NSLog (@"No folder returned for user '%@'", userId);
} }
@ -144,6 +150,8 @@ static NSURL *tableURL = nil;
userId]; userId];
if ([fc evaluateExpressionX: sql]) if ([fc evaluateExpressionX: sql])
NSLog (@"Unable to delete the preference record for '%@'", userId); NSLog (@"Unable to delete the preference record for '%@'", userId);
else if (verbose)
NSLog (@"Removed preference record for '%@'", userId);
[cm releaseChannel: fc]; [cm releaseChannel: fc];
} }
} }