Add more logging to DeleteAllKeysInList

This allows monitoring of progress of long deletes via debug logs.
This commit is contained in:
Andrew Gaul 2012-12-26 21:26:02 -08:00
parent 20ef45f9e7
commit 60d61ceb91
1 changed files with 3 additions and 1 deletions

View File

@ -88,7 +88,8 @@ public class DeleteAllKeysInList implements ClearListStrategy, ClearContainerStr
containerName); containerName);
options = options.clone(); options = options.clone();
if (options.isRecursive()) if (options.isRecursive())
message = message + " recursively"; message += " recursively";
logger.debug(message);
Map<StorageMetadata, Exception> exceptions = Maps.newHashMap(); Map<StorageMetadata, Exception> exceptions = Maps.newHashMap();
int maxErrors = 3; // TODO parameterize int maxErrors = 3; // TODO parameterize
for (int numErrors = 0; numErrors < maxErrors; ) { for (int numErrors = 0; numErrors < maxErrors; ) {
@ -188,6 +189,7 @@ public class DeleteAllKeysInList implements ClearListStrategy, ClearContainerStr
if (marker == null) { if (marker == null) {
break; break;
} }
logger.debug("%s with marker %s", message, marker);
options = options.afterMarker(marker); options = options.afterMarker(marker);
// Reset numErrors if we execute a successful iteration. This ensures // Reset numErrors if we execute a successful iteration. This ensures