Skip to content

Commit e7cfd40

Browse files
committed
fix(logging): correct log message for write block mode
Update log message to accurately reflect that we use a 'fixed transfer size' within Variable Block Mode, preventing confusion with SCSI Fixed Block Mode.
1 parent c9f3996 commit e7cfd40

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tape_ops/write_operations.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ impl TapeOperations {
428428
let mut last_progress_bytes = 0u64;
429429
let mut last_progress_time = std::time::Instant::now();
430430

431-
info!("Starting streaming write with block size: {} bytes (LTFS fixed-block mode)", block_size);
431+
info!("Starting streaming write with block size: {} bytes (fixed transfer size)", block_size);
432432

433433
loop {
434434
// Read data from the stream

0 commit comments

Comments
 (0)