Skip to content

Commit

Permalink
Add logging for ingest-feedback-events
Browse files Browse the repository at this point in the history
  • Loading branch information
aliu39 committed Apr 17, 2024
1 parent 56c3eb8 commit 5db65cd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions relay-server/src/services/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,15 @@ impl StoreService {
event_type = message.variant(),
topic = topic_name,
);
if topic_name == "ingest-feedback-events" {
if let KafkaMessage::Event(event_msg) = message {
relay_log::info!("Producing to ingest-feedback-events.\n start_time={}\n event_id={}\n project_id={}",
event_msg.start_time,
event_msg.event_id,
event_msg.project_id
);
}
}
}
}

Expand Down

0 comments on commit 5db65cd

Please sign in to comment.