Skip to content

Commit

Permalink
modify log level of message
Browse files Browse the repository at this point in the history
  • Loading branch information
dxu2 committed Apr 13, 2024
1 parent 7ce6f4a commit 5c69359
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pingora-core/src/connectors/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use crate::tls::ssl::SslConnector;
use crate::upstreams::peer::{Peer, ALPN};

use l4::connect as l4_connect;
use log::{debug, error, warn};
use log::{debug, warn};
use offload::OffloadRuntime;
use parking_lot::RwLock;
use pingora_error::{Error, ErrorType::*, OrErr, Result};
Expand Down Expand Up @@ -201,7 +201,7 @@ impl TransportConnector {
}
}
Err(_) => {
error!("failed to acquire reusable stream");
debug!("failed to acquire reusable stream");
None
}
}
Expand Down

0 comments on commit 5c69359

Please sign in to comment.