From ba82f173dbccfc2312677ec96fdd85813a417dc6 Mon Sep 17 00:00:00 2001 From: Chethan Rao <70657455+Chethan-rao@users.noreply.github.com> Date: Thu, 10 Aug 2023 00:33:34 +0530 Subject: [PATCH] refactor: remove unnecessary debug logs from payment method list api (#1884) --- crates/router/src/core/payment_methods/cards.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/router/src/core/payment_methods/cards.rs b/crates/router/src/core/payment_methods/cards.rs index 571b55e9e5..b84d01a052 100644 --- a/crates/router/src/core/payment_methods/cards.rs +++ b/crates/router/src/core/payment_methods/cards.rs @@ -1453,8 +1453,6 @@ fn filter_pm_card_network_based( request_card_networks: Option<&Vec>, pm_type: &api_enums::PaymentMethodType, ) -> bool { - logger::debug!(pm_card_networks=?pm_card_networks); - logger::debug!(request_card_networks=?request_card_networks); match pm_type { api_enums::PaymentMethodType::Credit | api_enums::PaymentMethodType::Debit => { match (pm_card_networks, request_card_networks) {