summaryrefslogtreecommitdiff
path: root/common/src/io_uring.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/io_uring.cpp')
-rw-r--r--common/src/io_uring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/io_uring.cpp b/common/src/io_uring.cpp
index e9af2f4..4066ce1 100644
--- a/common/src/io_uring.cpp
+++ b/common/src/io_uring.cpp
@@ -224,7 +224,7 @@ int io_uring_submit_write_entry(struct io_uring_instance *instance, const char *
if (len > instance->config.buff_size)
{
- TFE_LOG_ERROR(g_default_logger, "IO_URING: the length of the sent data is greater than the capacity of the io_uring buffer");
+ TFE_LOG_ERROR(g_default_logger, "IO_URING: the length of the sent data [%d] is greater than the capacity of the io_uring buffer [%d]", len, instance->config.buff_size);
return -1;
}