Skip to content

Commit

Permalink
fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
yamingk committed May 17, 2024
1 parent 0e05af9 commit bb2f7bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/interfaces/drive_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ std::error_code KernelDriveInterface::sync_write(IODevice* iodev, const char* da
++resubmit_cnt;
}
if (sisl_unlikely(written_size != size)) {
LOGWARN("Error during write offset={} write_size={} written_size={} errno={} fd={}", offset, size, written_size,
LOGWARN("Error during write offset={} size={} written_size={} errno={} fd={}", offset, size, written_size,
errno, iodev->fd());
return std::error_code{((errno == 0) ? ERANGE : errno), std::generic_category()};
} else {
Expand Down

0 comments on commit bb2f7bc

Please sign in to comment.