Print actual address we are trying to bind.

This commit is contained in:
Giulio Eulisse 2023-06-29 10:52:40 +02:00 committed by Alexey Rybalchenko
parent d1c99f7e15
commit 7ceccdeaa6

View File

@ -288,7 +288,7 @@ void Device::AttachChannels(vector<Channel*>& chans)
// remove the channel from the uninitialized container // remove the channel from the uninitialized container
itr = chans.erase(itr); itr = chans.erase(itr);
} else { } 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; ++itr;
} }
} else { } else {