From ead4ac2afa4de1740de0eb395cb8168ef2b8a74b Mon Sep 17 00:00:00 2001 From: Alexis Asseman Date: Thu, 25 Jul 2024 19:09:19 -0700 Subject: [PATCH] fix(tap-agent): never log config We are currently printing the contents of the config in the logs at the debug level. While that was useful at early testing stage, we should now drop it before it gets used on mainnet. --- tap-agent/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tap-agent/src/main.rs b/tap-agent/src/main.rs index b3800301..d72cae58 100644 --- a/tap-agent/src/main.rs +++ b/tap-agent/src/main.rs @@ -12,7 +12,6 @@ use indexer_tap_agent::{agent, metrics, CONFIG}; async fn main() -> Result<()> { // Parse basic configurations, also initializes logging. lazy_static::initialize(&CONFIG); - debug!("Config: {:?}", *CONFIG); let (manager, handler) = agent::start_agent().await; info!("TAP Agent started.");