Change LOGGER_DEBUG to LOGGER_ERROR for fail bind

This commit is contained in:
Christoffer Sterner 2015-03-07 23:45:00 +01:00
parent 10ca292f24
commit 3315fd2571

View File

@ -654,7 +654,7 @@ Networking_Core *new_networking_ex(IP ip, uint16_t port_from, uint16_t port_to)
*portptr = htons(port_to_try);
}
LOGGER_DEBUG("Failed to bind socket: %u, %s IP: %s port_from: %u port_to: %u", errno, strerror(errno),
LOGGER_ERROR("Failed to bind socket: %u, %s IP: %s port_from: %u port_to: %u", errno, strerror(errno),
ip_ntoa(&ip), port_from, port_to);
kill_networking(temp);