Skip to content

Commit e071625

Browse files
committed
fix: remove unneded log
1 parent e89be3c commit e071625

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

sentry/src/event_aggregator.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@ impl EventAggregator {
156156
drop(channel_recorder);
157157

158158
if aggr_throttle == 0 {
159-
println!("in store");
160159
store(
161160
&app.pool,
162161
&channel_id,

sentry/src/routes/channel.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,8 @@ pub async fn insert_events<A: Adapter + 'static>(
186186

187187
let into_body = req.into_body();
188188
let body = hyper::body::to_bytes(into_body).await?;
189-
println!("deserializing request body");
190189
let request_body = serde_json::from_slice::<HashMap<String, Vec<Event>>>(&body)?;
191-
println!("deserializing request body 2");
190+
192191
let events = request_body
193192
.get("events")
194193
.ok_or_else(|| ResponseError::BadRequest("invalid request".to_string()))?;

0 commit comments

Comments
 (0)