Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove excess pb-ws logs #1370

Closed
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
6 changes: 3 additions & 3 deletions packages/services/pegboard/standalone/ws/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ async fn handle_connection(
raw_stream: TcpStream,
addr: SocketAddr,
) {
tracing::info!(?addr, "new connection");
tracing::debug!(?addr, "new connection");

let ctx = ctx.clone();

Expand Down Expand Up @@ -119,7 +119,7 @@ async fn setup_connection(
// Bootleg way of reading the uri
uri = Some(req.uri().clone());

tracing::info!(?addr, ?uri, "handshake");
tracing::debug!(?addr, ?uri, "handshake");

Ok(res)
},
Expand Down Expand Up @@ -270,7 +270,7 @@ async fn upsert_client(
}

if exists == deleted {
tracing::info!(?client_id, "new client");
tracing::info!(?client_id, ?datacenter_id, ?flavor, "new client");

// Spawn a new client workflow
ctx.workflow(pegboard::workflows::client::Input { client_id })
Expand Down
Loading