Skip to content

Commit

Permalink
fix: don't log secrets (#5693)
Browse files Browse the repository at this point in the history
  • Loading branch information
lynnagara committed Mar 27, 2024
1 parent 7ed7441 commit 6281a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust_snuba/src/consumer.rs
Expand Up @@ -77,7 +77,7 @@ pub fn consumer_impl(
let max_batch_size = consumer_config.max_batch_size;
let max_batch_time = Duration::from_millis(consumer_config.max_batch_time_ms);

tracing::info!(?consumer_config, "Starting Rust consumer");
tracing::info!(?consumer_config.storages, "Starting Rust consumer");

// TODO: Support multiple storages
assert_eq!(consumer_config.storages.len(), 1);
Expand Down

0 comments on commit 6281a9a

Please sign in to comment.