Skip to content

Commit

Permalink
PA-757 WIP: added some temp debugging prints, by: Nina, Piotr
Browse files Browse the repository at this point in the history
  • Loading branch information
caseneuve committed Sep 30, 2024
1 parent a236b3c commit 0ed82f1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cli/website.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}!"))

0 comments on commit 0ed82f1

Please sign in to comment.