Skip to content

Commit 02dc023

Browse files
committed
chore(core): remove dbg
1 parent 1d1600d commit 02dc023

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

packages/core/guard/core/src/proxy_service.rs

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1820,16 +1820,15 @@ impl ProxyService {
18201820
let ws_handle = WebSocketHandle::new(client_ws);
18211821

18221822
loop {
1823-
match dbg!(
1824-
handlers
1825-
.handle_websocket(
1826-
ws_handle.clone(),
1827-
&req_headers,
1828-
&req_path,
1829-
&mut request_context,
1830-
)
1831-
.await
1832-
) {
1823+
match handlers
1824+
.handle_websocket(
1825+
ws_handle.clone(),
1826+
&req_headers,
1827+
&req_path,
1828+
&mut request_context,
1829+
)
1830+
.await
1831+
{
18331832
Result::Ok(()) => {
18341833
tracing::debug!("websocket closed");
18351834

0 commit comments

Comments
 (0)