Skip to content

Commit 7a702c6

Browse files
authored
Changed disconnect log to info mode (#43)
1 parent 13529ab commit 7a702c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proxy/src/proxy.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use tokio::{
1212
net::lookup_host,
1313
select,
1414
};
15-
use tracing::{debug, error};
15+
use tracing::{error, info};
1616

1717
use crate::{config::Config, Consumer, State, Tier};
1818

@@ -94,7 +94,7 @@ impl ProxyApp {
9494

9595
match event {
9696
DuplexEvent::ClientRead(0) | DuplexEvent::InstanceRead(0) => {
97-
debug!(
97+
info!(
9898
consumer = ctx.consumer.to_string(),
9999
active_connections = ctx.consumer.active_connections,
100100
"client disconnected"

0 commit comments

Comments
 (0)