> + .credentials(storageAccountName, key)
> + .buildApi(AzureBlobClient.class);
> +
> +
> + List<VMImage> list = new ArrayList<VMImage>();
> + try {
> +
> + BoundedSet<ContainerProperties> containerList =
> azureBlob.listContainers();
> + for (ContainerProperties props : containerList) {
> + if (props.getName().equals("system")) {
> + ListBlobsResponse blobList = azureBlob.listBlobs("system");
> + String osDisk = "";
> + String dataDisk = "";
> +
> + for (BlobProperties blob : blobList) {
> + System.out.println(blob.getName());
Don't do this. Consider initializing this helper class with the compute logger
instead.
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/305/files/93cecad810be0366709b28b2dbf3259efe10dec2#r73308927