Skip to content

Commit

Permalink
Don't log every value (#20744)
Browse files Browse the repository at this point in the history
Release Notes:

- N/A
  • Loading branch information
ConradIrwin authored Nov 15, 2024
1 parent 1235d08 commit ac5ecf5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/collab/src/api/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,6 @@ pub async fn post_events(
let mut request = kinesis_client.put_records().stream_name(stream);
for row in for_snowflake(request_body.clone(), first_event_at) {
if let Some(data) = serde_json::to_vec(&row).log_err() {
println!("{}", String::from_utf8_lossy(&data));
request = request.records(
aws_sdk_kinesis::types::PutRecordsRequestEntry::builder()
.partition_key(request_body.system_id.clone().unwrap_or_default())
Expand Down

0 comments on commit ac5ecf5

Please sign in to comment.