Skip to content

Commit

Permalink
refactor(server): downgrade connection log (#1076)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 authored Apr 13, 2023
1 parent 0c340de commit 8756ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ fn process_connection<'a, L: Logger, B, U>(

let max_conns = cfg.max_connections as usize;
let curr_conns = max_conns - connection_guard.available_connections();
tracing::info!("Accepting new connection {}/{}", curr_conns, max_conns);
tracing::debug!("Accepting new connection {}/{}", curr_conns, max_conns);

let tower_service = TowerService {
inner: ServiceData {
Expand Down

0 comments on commit 8756ac9

Please sign in to comment.