Skip to content

Commit

Permalink
fix(tap-agent): never log config
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
aasseman committed Jul 26, 2024
1 parent dd311d3 commit ead4ac2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tap-agent/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
Expand Down

0 comments on commit ead4ac2

Please sign in to comment.