This commit is contained in:
Michael Davidsaver
2022-12-23 08:50:12 -08:00
parent 7be1070517
commit db6b7ba34b
3 changed files with 7 additions and 4 deletions
+4 -1
View File
@@ -408,7 +408,10 @@ ServIface::ServIface(const SockAddr &addr, server::Server::Pvt *server, bool fal
fallback = false;
continue;
}
log_err_printf(connsetup, "Bind to %s fails\n", bind_addr.tostring().c_str());
log_err_printf(connsetup, "Bind to %s fails%s with %d\n",
bind_addr.tostring().c_str(),
fallback ? "" : " after fallback",
e.code().value());
throw;
}
break;