From 8a1bb4cad82ad1b8efa72a4e599ad3bb18b72dda Mon Sep 17 00:00:00 2001 From: Sheldan <5037282+Sheldan@users.noreply.github.com> Date: Sat, 4 Feb 2023 17:11:57 +0100 Subject: [PATCH] [AB-xxx] small installer logging improvement --- .../src/main/docker/deployment/python/templates_deploy.py | 1 + 1 file changed, 1 insertion(+) 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))