You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ariatosca.apache.org by av...@apache.org on 2017/04/05 13:58:33 UTC

[17/17] incubator-ariatosca git commit: Print stored service template name

Print stored service template name


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/8b4dbe54
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/8b4dbe54
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/8b4dbe54

Branch: refs/heads/cli-tests
Commit: 8b4dbe5444eb1530c4204076462b7a2ce19293c7
Parents: aa82ffa
Author: Avia Efrat <av...@gigaspaces.com>
Authored: Wed Apr 5 16:48:10 2017 +0300
Committer: Avia Efrat <av...@gigaspaces.com>
Committed: Wed Apr 5 16:49:57 2017 +0300

----------------------------------------------------------------------
 aria/cli/commands/service_templates.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/8b4dbe54/aria/cli/commands/service_templates.py
----------------------------------------------------------------------
diff --git a/aria/cli/commands/service_templates.py b/aria/cli/commands/service_templates.py
index d11ca08..90d02c1 100644
--- a/aria/cli/commands/service_templates.py
+++ b/aria/cli/commands/service_templates.py
@@ -121,7 +121,7 @@ def store(service_template_path, service_template_name, model_storage, resource_
                                      service_template_name)
     except storage_exceptions.StorageError as e:
         handle_storage_exception(e, 'service template', service_template_name)
-    logger.info('Service template stored')
+    logger.info('Service template {0} stored'.format(service_template_name))
 
 
 @service_templates.command(name='delete',