From 415c313375f52bdcf3517a7388f0a52f155d3d60 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 7 Jan 2016 11:07:51 -0700 Subject: [PATCH] server: include name of verify file requested for error message Signed-off-by: Jens Axboe --- server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.c b/server.c index a71562bb..dfcc9f38 100644 --- a/server.c +++ b/server.c @@ -1823,8 +1823,8 @@ int fio_server_get_verify_state(const char *name, int threadnumber, } if (rep->error) { - log_err("fio: failure on receiving state file: %s\n", - strerror(rep->error)); + log_err("fio: failure on receiving state file %s: %s\n", + out.path, strerror(rep->error)); fail: *datap = NULL; sfree(rep); -- 2.25.1