cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=be25ab6f85ba89c94fcce987863ac2a295f13950
commit be25ab6f85ba89c94fcce987863ac2a295f13950 Author: Cedric BAIL <[email protected]> Date: Wed Mar 5 11:46:12 2014 +0900 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 29141ac..a3751b8 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; } --
