Skip to content

Commit

Permalink
chore: remove redundant prints
Browse files Browse the repository at this point in the history
  • Loading branch information
goshawk-3 committed Feb 18, 2025
1 parent dd5ede9 commit 7fd4c60
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions fhevm-engine/sns-executor/src/keyset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,9 @@ async fn read_keys_from_lo(
keys_column_name
);

println!("read_keys_from_lo {}", keys_column_name);

let row: PgRow = sqlx::query(&query).bind(tenant_id).fetch_one(pool).await?;
let oid: Oid = row.try_get(0)?;

println!("read_keys_from_lo 2 {}", keys_column_name);

info!(target: "sns", "Retrieved oid: {:?}", oid);

// Retrieve the large object data
Expand All @@ -78,8 +74,6 @@ async fn read_keys_from_lo(
.fetch_one(pool)
.await?;

println!("read_keys_from_lo 3 {}", keys_column_name);

anyhow::Ok(bytes)
}

Expand Down

0 comments on commit 7fd4c60

Please sign in to comment.