From c694133d8cece37d03f631fd42f5abf010e77424 Mon Sep 17 00:00:00 2001 From: paulobressan Date: Wed, 29 May 2024 13:58:11 -0300 Subject: [PATCH] chore(proxy): changed disconnect log to info mode --- proxy/src/proxy.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxy/src/proxy.rs b/proxy/src/proxy.rs index 35ac37b..5f50df0 100644 --- a/proxy/src/proxy.rs +++ b/proxy/src/proxy.rs @@ -12,7 +12,7 @@ use tokio::{ net::lookup_host, select, }; -use tracing::{debug, error}; +use tracing::{error, info}; use crate::{config::Config, Consumer, State, Tier}; @@ -94,7 +94,7 @@ impl ProxyApp { match event { DuplexEvent::ClientRead(0) | DuplexEvent::InstanceRead(0) => { - debug!( + info!( consumer = ctx.consumer.to_string(), active_connections = ctx.consumer.active_connections, "client disconnected"