Skip to content

Commit 5646ed5

Browse files
committed
Address review feedback. Log webhook server url.
1 parent 4aa4366 commit 5646ed5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aries_cloudcontroller/aries_controller.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __post_init__(self):
4040
async def init_webhook_server(
4141
self, webhook_host: str, webhook_port: int, webhook_base: str = ""
4242
):
43-
"""Create a webhooklisteners
43+
"""Create a webhook listeners
4444
4545
Args:
4646
----
@@ -62,7 +62,7 @@ async def init_webhook_server(
6262
is_multitenant=self.is_multitenant,
6363
)
6464
await self.webhook_server.listen_webhooks()
65-
logger.info("Webhook server started.")
65+
logger.info(f"Webhook server started on {self.webhook_server.webhook_host}.")
6666
except Exception as exc:
6767
logger.error(f"Listening webhooks failed! {exc!r} occurred.")
6868
raise Exception(f"{exc!r}")

0 commit comments

Comments
 (0)