Compare commits

...

1 Commits

Author SHA1 Message Date
Ivan Efremov
5763aa85a0 fix(proxy): Lower log level of the "changed session" for local_proxy 2025-04-29 13:20:10 +03:00

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(_) => {