From 8eba5ce1bf761103cc4fc5fc56bf7fcbd67c8c1a Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 7 Apr 2020 11:32:24 -0700 Subject: [PATCH] Print description and fix command. --- certbot-ci/certbot_integration_tests/utils/acme_server.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/certbot-ci/certbot_integration_tests/utils/acme_server.py b/certbot-ci/certbot_integration_tests/utils/acme_server.py index b36aa09e0..3e0981591 100755 --- a/certbot-ci/certbot_integration_tests/utils/acme_server.py +++ b/certbot-ci/certbot_integration_tests/utils/acme_server.py @@ -179,7 +179,8 @@ class ACMEServer(object): response.raise_for_status() except BaseException: # If we failed to set up boulder, print its logs. - process = self._launch_process(['docker-compose logs'], cwd=instance_path, force_output=True) + print('=> Boulder setup failed. Boulder logs are:') + process = self._launch_process(['docker-compose', 'logs'], cwd=instance_path, force_output=True) process.wait() raise