Skip to content

Commit

Permalink
tweak debug log msgs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-jiang committed Jan 14, 2025
1 parent 290f56e commit e37a2f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/vector-buffers/src/variants/disk_v2/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ where
if self.ledger.is_writer_done() {
let total_buffer_size = self.ledger.get_total_buffer_size();
if total_buffer_size == 0 {
debug!("writer is done and total buffer size is 0");
debug!("buffer writer is done and buffer is empty")
return Ok(None);
}
}
Expand Down Expand Up @@ -1075,7 +1075,7 @@ where
continue;
}

debug!("reader is on writer's current data file: waiting for writer to wake the reader");
debug!("waiting for buffer writer to wake the reader");
self.ledger.wait_for_writer().await;
} else {
debug!(
Expand Down

0 comments on commit e37a2f3

Please sign in to comment.