Skip to content

Commit

Permalink
fix(amqp): remove connection string log (#16655)
Browse files Browse the repository at this point in the history
  • Loading branch information
zamazan4ik authored Mar 2, 2023
1 parent ef62324 commit d0ed464
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/amqp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ impl AmqpConfig {
pub(crate) async fn connect(
&self,
) -> Result<(lapin::Connection, lapin::Channel), Box<dyn std::error::Error + Send + Sync>> {
debug!("Connecting to {}.", self.connection_string);
let addr = self.connection_string.clone();
let conn = match &self.tls {
Some(tls) => {
Expand Down

0 comments on commit d0ed464

Please sign in to comment.