From be25ab6f85ba89c94fcce987863ac2a295f13950 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Wed, 5 Mar 2014 11:46:12 +0900 Subject: [PATCH] eio: let's report the path we didn't found. --- src/lib/eio/eio_monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eio/eio_monitor.c b/src/lib/eio/eio_monitor.c index 29141acf46..a3751b8fd8 100644 --- a/src/lib/eio/eio_monitor.c +++ b/src/lib/eio/eio_monitor.c @@ -335,7 +335,7 @@ eio_monitor_stringshared_add(const char *path) if (stat(path, &st) != 0) { - ERR("monitored path not found"); + ERR("monitored path '%s' not found.", path); return NULL; }