mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
Skip all parameters in instrumentation
This commit is contained in:
parent
c8578939e0
commit
b70f8933c1
@ -105,7 +105,7 @@ impl ThreadLocalState {
|
|||||||
.and_then(|tile_request_state| tile_request_state.get_tile_request(request_id).cloned())
|
.and_then(|tile_request_state| tile_request_state.get_tile_request(request_id).cloned())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tracing::instrument(skip(self, data))]
|
#[tracing::instrument(skip_all)]
|
||||||
pub fn process_tile(
|
pub fn process_tile(
|
||||||
&self,
|
&self,
|
||||||
request_id: TileRequestID,
|
request_id: TileRequestID,
|
||||||
@ -138,7 +138,7 @@ impl ThreadLocalState {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tracing::instrument(skip(self))]
|
#[tracing::instrument(skip_all)]
|
||||||
fn index_geometry(&self, tile_result: &TileFetchResult) {
|
fn index_geometry(&self, tile_result: &TileFetchResult) {
|
||||||
match tile_result {
|
match tile_result {
|
||||||
TileFetchResult::Tile { data, coords } => {
|
TileFetchResult::Tile { data, coords } => {
|
||||||
@ -162,7 +162,7 @@ impl ThreadLocalState {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tracing::instrument(skip(self))]
|
#[tracing::instrument(skip_all)]
|
||||||
pub fn query_point(
|
pub fn query_point(
|
||||||
&self,
|
&self,
|
||||||
world_coords: &WorldCoords,
|
world_coords: &WorldCoords,
|
||||||
@ -184,7 +184,7 @@ impl ThreadLocalState {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tracing::instrument(skip(self))]
|
#[tracing::instrument(skip_all)]
|
||||||
fn tessellate_layers_with_request(
|
fn tessellate_layers_with_request(
|
||||||
&self,
|
&self,
|
||||||
tile_result: &TileFetchResult,
|
tile_result: &TileFetchResult,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user