Skip to content

Commit e061f6d

Browse files
committed
fix: update error logging info /:id/events
1 parent 9521770 commit e061f6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry/src/event_aggregator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async fn store(
3939
let ev_aggr: Option<&EventAggregate> = recorder.get(&channel_id.to_string());
4040
if let Some(data) = ev_aggr {
4141
if let Err(e) = insert_event_aggregate(&db, &channel_id, data).await {
42-
error!(&logger, "event-aggregates store error {}", e);
42+
error!(&logger, "{}", e; "eventaggregator" => "store");
4343
} else {
4444
// reset aggr
4545
recorder.insert(channel_id.to_string(), new_aggr(&channel_id));

0 commit comments

Comments
 (0)