diff --git a/abstracto-application/installer/src/main/docker/deployment/python/templates_deploy.py b/abstracto-application/installer/src/main/docker/deployment/python/templates_deploy.py index 5f0a52e79..ef3016131 100644 --- a/abstracto-application/installer/src/main/docker/deployment/python/templates_deploy.py +++ b/abstracto-application/installer/src/main/docker/deployment/python/templates_deploy.py @@ -18,6 +18,7 @@ def deploy_template_folder(db_config, folder): file_content = template_file.read() template_key = os.path.splitext(os.path.basename(file))[0] template = {'key': template_key, 'content': file_content} + print('Deployment template %s', template) templates.append(template) print('Deploying %s templates from folder %s' % (len(templates), folder))