Skip to content

Commit 0ed82f1

Browse files
committed
PA-757 WIP: added some temp debugging prints, by: Nina, Piotr
1 parent a236b3c commit 0ed82f1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cli/website.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,9 @@ def create_autorenew_cert(
131131
],
132132
):
133133
"""Create and apply an auto-renewing Let's Encrypt certificate for the given domain"""
134-
Website().auto_ssl(domain_name=domain_name)
134+
response_json = Website().auto_ssl(domain_name=domain_name)
135+
from pprint import pprint
136+
print("########################", flush=True)
137+
pprint(response_json)
138+
print("########################", flush=True)
135139
typer.echo(snakesay(f"Applied auto-renewing SSL certificate for {domain_name}!"))

0 commit comments

Comments
 (0)