Skip to content

Commit

Permalink
Remove debug commands
Browse files Browse the repository at this point in the history
  • Loading branch information
hatchan committed Aug 2, 2024
1 parent 0b194e7 commit 1d275a1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 1 addition & 4 deletions fpx-lib/src/data/fake_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,7 @@ impl Store for FakeStore {
.read()
.unwrap()
.iter()
.filter(|span| {
info!(span.trace_id, trace_id, "searching!");
span.trace_id == trace_id
})
.filter(|span| span.trace_id == trace_id)
.cloned()
.collect();

Expand Down
2 changes: 0 additions & 2 deletions fpx-workers/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,5 @@ async fn fetch(
let service = service::Service::new(boxed_store.clone(), events.clone());
let mut router = api::create_api(events, service, boxed_store);

info!("Request: {:?}", req);

Ok(router.call(req).await?)
}

0 comments on commit 1d275a1

Please sign in to comment.