From c57a74e5b3e37432858d942e53e2620d9187941a Mon Sep 17 00:00:00 2001 From: Maxim Deb Natkh Date: Mon, 20 Jan 2025 16:49:23 +0100 Subject: [PATCH] fix dmesg and strace --- cloud/storage/core/tools/testing/fio/lib/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) 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}"