Skip to content

Commit 696804e

Browse files
committed
Fix log parameters
1 parent a8961d2 commit 696804e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/elasticsearch/cloud/azure/AzureStorageServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public void deleteBlob(String container, String blob) throws URISyntaxException,
150150
// Container name must be lower case.
151151
CloudBlobContainer blob_container = client.getContainerReference(container);
152152
if (blob_container.exists()) {
153-
logger.trace("blob found. removing.", container, blob);
153+
logger.trace("container [{}]: blob [{}] found. removing.", container, blob);
154154
CloudBlockBlob azureBlob = blob_container.getBlockBlobReference(blob);
155155
azureBlob.delete();
156156
}

0 commit comments

Comments
 (0)