Skip to content

Commit

Permalink
Log bounds when returning trees
Browse files Browse the repository at this point in the history
  • Loading branch information
umonkey committed Apr 1, 2024
1 parent a54dbe1 commit c5bf479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/actions/get_trees.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub async fn get_trees(

let trees = state.get_trees(bounds).await?;

debug!("Returning {} trees", trees.len());
debug!("Returning {} trees for n={} e={} s={} w={}", trees.len(), query.n, query.e, query.s, query.w);

Ok(Json(trees))
}

0 comments on commit c5bf479

Please sign in to comment.