This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-2814 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 805d1ad0ef2bd8881cc8fd79b19ef2281cfca6cc Author: leonidfrolov <[email protected]> AuthorDate: Thu May 26 14:17:39 2022 +0300 [DATALAB-2814]: changed some logging --- .../src/general/scripts/azure/common_create_storage_account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure-provisioning/src/general/scripts/azure/common_create_storage_account.py b/infrastructure-provisioning/src/general/scripts/azure/common_create_storage_account.py index 17676b084..5eab797a4 100644 --- a/infrastructure-provisioning/src/general/scripts/azure/common_create_storage_account.py +++ b/infrastructure-provisioning/src/general/scripts/azure/common_create_storage_account.py @@ -51,9 +51,9 @@ if __name__ == "__main__": logging.info("Creating storage account {}.".format(account_name)) storage_account = AzureActions().create_storage_account(args.resource_group_name, account_name, args.region, account_tags) + logging.info("STORAGE ACCOUNT {} has been created".format(account_name)) blob_container = AzureActions().create_blob_container(args.resource_group_name, account_name, args.container_name) - logging.info("STORAGE ACCOUNT {} has been created".format(account_name)) logging.info("CONTAINER {} has been created".format(args.container_name)) else: logging.info("STORAGE ACCOUNT with name {0} could not be created. {1}".format(account_name, check.message)) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
