diff --git a/maestro/ofi.c b/maestro/ofi.c index 1ab773618ed80139d0772c78b58c4f75bd575318..ed329dd73067a6fde04dee1c06ccb57108f48b1a 100644 --- a/maestro/ofi.c +++ b/maestro/ofi.c @@ -2314,8 +2314,14 @@ mstro_ofi__try_epd_addr(const struct mstro_endpoint *local_ep, ret); status = MSTRO_FAIL; } - DEBUG("AV of ep %s accepted address\n", - mstro_endpoint_describe(local_ep)); + { + size_t size = EP_DESC_BUF_MAX; + char remote_straddr[EP_DESC_BUF_MAX]; + fi_av_straddr(local_ep->av, remote_addr, remote_straddr, &size); + + DEBUG("AV of ep %s accepted address %s\n", + mstro_endpoint_describe(local_ep), remote_straddr); + } status = MSTRO_OK; BAILOUT: