Skip to content

Commit

Permalink
drop debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
penberg committed Nov 13, 2024
1 parent 538b1a0 commit ec13bc6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions libsql/src/local/database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,6 @@ impl Database {
let conn = self.connect()?;
let mut max_frame_no: std::os::raw::c_uint = 0;
unsafe { libsql_sys::ffi::libsql_wal_frame_count(conn.handle(), &mut max_frame_no) };
println!("Maximum frame: {}", max_frame_no);
let sync_ctx = self.sync_ctx.as_ref().unwrap();
let generation = 1;
let start_frame_no = sync_ctx.durable_frame_num() + 1;
Expand Down Expand Up @@ -419,7 +418,6 @@ impl Database {
}
None => {}
}
println!("Pushing frame: {:?}", frame.len());
let res = builder.body(frame.to_vec()).send().await.unwrap();
if res.status().is_success() {
return Ok(());
Expand Down

0 comments on commit ec13bc6

Please sign in to comment.