Add a missing trace to `removeContainer`
This commit is contained in:
parent
42706653e3
commit
3cd0e8929b
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue