Skip to content

Commit 618cbfc

Browse files
authored
Merge pull request #77 from ClaydeCode/chore/webhook-access-log
chore(webhook): enable uvicorn access_log for ingress visibility
2 parents 1c8a1e6 + 7130440 commit 618cbfc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/clayde/orchestrator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ async def _run_with_pebble() -> None:
277277
app = create_app(queue=queue, expected_token=settings.pebble_token)
278278
config = uvicorn.Config(
279279
app, host="0.0.0.0", port=settings.pebble_port,
280-
log_level="info", access_log=False, lifespan="off",
280+
log_level="info", access_log=True, lifespan="off",
281281
)
282282
server = uvicorn.Server(config)
283283

0 commit comments

Comments
 (0)