Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions engine/packages/pegboard-runner/src/tunnel_to_ws_task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ pub async fn task(
};

// Forward raw message to WebSocket
tracing::debug!(?to_client_msg, "sending runner message to client");
let serialized_msg = match versioned::ToClient::wrap_latest(to_client_msg)
.serialize(conn.protocol_version)
{
Expand Down
1 change: 1 addition & 0 deletions engine/packages/pegboard-runner/src/ws_to_tunnel_task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ pub async fn task(
continue;
}
};
tracing::debug!(?msg, "received runner message from client");

handle_message(&ctx, &conn, msg)
.await
Expand Down
Loading