Add a missing trace to `removeContainer`

This commit is contained in:
David Pilato 2014-07-31 00:40:47 +02:00
parent 42706653e3
commit 3cd0e8929b
1 changed files with 3 additions and 0 deletions

View File

@ -120,6 +120,9 @@ public class AzureStorageServiceImpl extends AbstractLifecycleComponent<AzureSto
options.setRetryPolicyFactory(new RetryNoRetry());
blob_container.deleteIfExists(options, null);
*/
if (logger.isTraceEnabled()) {
logger.trace("removing container [{}]", container);
}
blob_container.deleteIfExists();
}