Add the status value to the discover mount failure log. Signed-off-by: Geoff Levand --- discover/device-handler.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/discover/device-handler.c +++ b/discover/device-handler.c @@ -223,8 +223,11 @@ static int mount_device(struct discover_ goto out_rmdir; } - if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) + if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { + pb_log("%s: mount failed (%d): %s\n", __func__, + WEXITSTATUS(status), ctx->event->device); goto out_rmdir; + } setup_device_links(ctx); return 0; @@ -316,7 +319,6 @@ static int handle_add_event(struct devic rc = mount_device(ctx); if (rc) { - pb_log("mount_device failed for %s\n", event->device); talloc_free(ctx); return 0; } --