diff --git a/cloud/storage/core/tools/testing/fio/lib/__init__.py b/cloud/storage/core/tools/testing/fio/lib/__init__.py index 2f88b732884..e02e6e0ac45 100644 --- a/cloud/storage/core/tools/testing/fio/lib/__init__.py +++ b/cloud/storage/core/tools/testing/fio/lib/__init__.py @@ -393,6 +393,7 @@ def monitor_fio_progress(): stderr=dmesg_output, timeout=10, ) + logging.info("Saved dmesg output to dmesg.txt") except Exception as dmesg_error: logging.info( f"Failed to save dmesg output: {dmesg_error}" @@ -409,6 +410,9 @@ def monitor_fio_progress(): stderr=strace_output, timeout=10, ) + logging.info( + f"Saved strace output for PID {pid} to strace_{pid}.txt" + ) except Exception as strace_error: logging.info( f"Failed to save strace output: {strace_error}"