From c23770fe752b7cdd92de4af5dd5b65f57da80709 Mon Sep 17 00:00:00 2001 From: mo khan Date: Sat, 5 Jul 2025 12:36:21 -0600 Subject: chore: remove unhelpful logging --- src/authorization/check_service.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/authorization') diff --git a/src/authorization/check_service.rs b/src/authorization/check_service.rs index 57f7b5d5..f8c7577f 100644 --- a/src/authorization/check_service.rs +++ b/src/authorization/check_service.rs @@ -23,10 +23,8 @@ impl envoy_types::ext_authz::v3::pb::Authorization for CheckService { request: Request, ) -> Result, Status> { if self.authorizer.authorize(request.into_inner()) { - log::info!("OK"); Ok(Response::new(CheckResponse::with_status(Status::ok("OK")))) } else { - log::info!("Unauthorized"); Ok(Response::new(CheckResponse::with_status( Status::unauthenticated("Unauthorized"), ))) -- cgit v1.2.3