Skip to content

Commit 3dd48a3

Browse files
committed
fix(api): use structured placeholders in health logging
1 parent 920bcee commit 3dd48a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,5 +267,5 @@ def healthcheck():
267267
from app.health import health
268268

269269
message, status, _ = health.run()
270-
logger.warning("HEALTH:", message, status)
270+
logger.warning("HEALTH: %s %s", message, status)
271271
return Response(content=message, status_code=status, media_type="application/json")

0 commit comments

Comments
 (0)