mirror of
https://github.com/badaix/snapcast.git
synced 2025-08-04 00:59:32 +02:00
Log resolved IP addresses
This commit is contained in:
parent
be083d2e8e
commit
6ff39074c0
1 changed files with 2 additions and 1 deletions
|
@ -137,8 +137,9 @@ void ClientConnection::connect(const ResultHandler& handler)
|
|||
handler(ec);
|
||||
return;
|
||||
}
|
||||
std::for_each(iterator, {}, [this](auto& it) { LOG(DEBUG, LOG_TAG) << "Resolved IP: " << it.endpoint().address().to_string() << "\n"; });
|
||||
|
||||
LOG(INFO, LOG_TAG) << "Connecting\n";
|
||||
LOG(INFO, LOG_TAG) << "Connecting to " << iterator->endpoint() << "\n";
|
||||
socket_.connect(*iterator, ec);
|
||||
if (ec)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue