From 7ceccdeaa6f126c34c87763d1af0366bd458d240 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Thu, 29 Jun 2023 10:52:40 +0200 Subject: [PATCH] Print actual address we are trying to bind. --- fairmq/Device.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fairmq/Device.cxx b/fairmq/Device.cxx index c27ea8b5..ca05ee7e 100644 --- a/fairmq/Device.cxx +++ b/fairmq/Device.cxx @@ -288,7 +288,7 @@ void Device::AttachChannels(vector& chans) // remove the channel from the uninitialized container itr = chans.erase(itr); } else { - LOG(error) << "failed to attach channel " << (*itr)->fName << " (" << (*itr)->fMethod << ")"; + LOG(error) << "failed to attach channel " << (*itr)->fName << " (" << (*itr)->fMethod << " on " << (*itr)->fAddress << ")"; ++itr; } } else {