From 0035b40f27f16fb24308a94df9a0380419c26ddc Mon Sep 17 00:00:00 2001 From: Ivan Towlson Date: Tue, 15 Aug 2017 13:17:26 +1200 Subject: [PATCH] Log name if Azure file share cannot be created --- pkg/cloudprovider/providers/azure/azure_storage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cloudprovider/providers/azure/azure_storage.go b/pkg/cloudprovider/providers/azure/azure_storage.go index 8572b9c779d..81388bc428a 100644 --- a/pkg/cloudprovider/providers/azure/azure_storage.go +++ b/pkg/cloudprovider/providers/azure/azure_storage.go @@ -48,7 +48,7 @@ func (az *Cloud) CreateFileShare(name, storageAccount, storageType, location str err = az.createFileShare(account.Name, key, name, requestGB) if err != nil { - glog.V(2).Infof("failed to create share in account %s: %v", account.Name, err) + glog.V(2).Infof("failed to create share %s in account %s: %v", name, account.Name, err) continue } glog.V(4).Infof("created share %s in account %s", name, account.Name)