is_open_as_broadcast);
} catch (const Exception& ex) {
IFACEMGR_ERROR(SocketConfigError, error_handler,
- "failed to open socket on interface "
+ "Failed to open socket on interface "
<< iface->getName()
<< ", reason: "
<< ex.what());
IfaceMgr::openSocket(iface->getName(), addr, port, false, false);
} catch (const Exception& ex) {
IFACEMGR_ERROR(SocketConfigError, error_handler,
- "failed to open unicast socket on interface "
+ "Failed to open unicast socket on interface "
<< iface->getName()
<< ", reason: " << ex.what());
continue;
IfaceMgr::openMulticastSocket(*iface, addr, port, nullptr);
} catch (const Exception& ex) {
IFACEMGR_ERROR(SocketConfigError, error_handler,
- "failed to open multicast socket on interface "
+ "Failed to open multicast socket on interface "
<< iface->getName() << ", reason: " << ex.what());
continue;
}