diff --git a/mesh/mesh-io-generic.c b/mesh/mesh-io-generic.c
index cc91f49..42bf64a 100644
--- a/mesh/mesh-io-generic.c
+++ b/mesh/mesh-io-generic.c
#include <config.h>
#endif
+#include <errno.h>
+#include <string.h>
#include <sys/time.h>
#include <ell/ell.h>
{
io->pvt->hci = bt_hci_new_user_channel(io->pvt->index);
if (!io->pvt->hci) {
- l_error("Failed to start mesh io (hci %u)", io->pvt->index);
+ l_error("Failed to start mesh io (hci %u): %s", io->pvt->index,
+ strerror(errno));
return false;
}