From 0ed82f1e82e24282e61570f8792fd78907a6467c Mon Sep 17 00:00:00 2001 From: Piotr Kaznowski Date: Mon, 30 Sep 2024 15:53:35 +0200 Subject: [PATCH] PA-757 WIP: added some temp debugging prints, by: Nina, Piotr --- cli/website.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cli/website.py b/cli/website.py index 7a950bc..1e84b4e 100644 --- a/cli/website.py +++ b/cli/website.py @@ -131,5 +131,9 @@ def create_autorenew_cert( ], ): """Create and apply an auto-renewing Let's Encrypt certificate for the given domain""" - Website().auto_ssl(domain_name=domain_name) + response_json = Website().auto_ssl(domain_name=domain_name) + from pprint import pprint + print("########################", flush=True) + pprint(response_json) + print("########################", flush=True) typer.echo(snakesay(f"Applied auto-renewing SSL certificate for {domain_name}!"))