fix(proxy): Lower log level of the "changed session" for local_proxy

This commit is contained in:
Ivan Efremov
2025-04-29 13:20:10 +03:00
parent 498d852bde
commit 5763aa85a0

View File

@@ -199,7 +199,7 @@ pub(crate) fn poll_client<C: ClientInnerExt>(
match rx.has_changed() {
Ok(true) => {
session_id = *rx.borrow_and_update();
info!(%session_id, "changed session");
debug!(%session_id, "changed session");
idle_timeout.as_mut().reset(Instant::now() + idle);
}
Err(_) => {