Skip to content

Commit

Permalink
chore: do not pretty print config to logs
Browse files Browse the repository at this point in the history
  • Loading branch information
suchapalaver committed May 23, 2024
1 parent 78f5c26 commit a9af5dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graph-gateway/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ async fn main() {
.clone()
.unwrap_or_else(|| Uuid::new_v4().to_string());

let config_repr = format!("{config:#?}");
let config_repr = format!("{config:?}");

// Instantiate the Kafka client
let kafka_client: &'static KafkaClient = match KafkaClient::new(&config.kafka.into()) {
Expand Down

0 comments on commit a9af5dd

Please sign in to comment.