From e4af3812d55689aefb5bb8ed6f12a6c9c0643a51 Mon Sep 17 00:00:00 2001 From: Chethan Rao <70657455+Chethan-rao@users.noreply.github.com> Date: Mon, 25 Sep 2023 13:03:25 +0530 Subject: [PATCH] refactor: enable `logs` feature flag in router crate (#2358) Co-authored-by: ItsMeShashank --- crates/router/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/router/Cargo.toml b/crates/router/Cargo.toml index 84ce469353..753f9cc491 100644 --- a/crates/router/Cargo.toml +++ b/crates/router/Cargo.toml @@ -90,7 +90,7 @@ x509-parser = "0.15.0" # First party crates api_models = { version = "0.1.0", path = "../api_models", features = ["errors"] } cards = { version = "0.1.0", path = "../cards" } -common_utils = { version = "0.1.0", path = "../common_utils", features = ["signals", "async_ext"] } +common_utils = { version = "0.1.0", path = "../common_utils", features = ["signals", "async_ext", "logs"] } external_services = { version = "0.1.0", path = "../external_services" } masking = { version = "0.1.0", path = "../masking" } redis_interface = { version = "0.1.0", path = "../redis_interface" }