kych

OAuth 2.0 API for Swiyu to enable Taler integration of Swiyu for KYC (experimental)
Log | Files | Refs

commit 975193e239437da95edba7e8c699dbc095f7e0be
parent ea4064243b03a529be69c5b88fe6543df9d0148a
Author: Henrique Chan Carvalho Machado <henriqueccmachado@tecnico.ulisboa.pt>
Date:   Fri, 28 Nov 2025 22:18:54 +0100

oauth2_gateway: add /health log

Diffstat:
Moauth2_gateway/src/handlers.rs | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/oauth2_gateway/src/handlers.rs b/oauth2_gateway/src/handlers.rs @@ -16,6 +16,7 @@ use crate::{ // Health check endpoint pub async fn health_check() -> impl IntoResponse { + tracing::info!("Received Health Request"); Json(json!({ "status": "healthy", "service": "oauth2-gateway",