diff --git a/lib/server/CServer.cpp b/lib/server/CServer.cpp index 5d1b59c6..4df38195 100644 --- a/lib/server/CServer.cpp +++ b/lib/server/CServer.cpp @@ -1178,11 +1178,11 @@ CServer::acceptClients(void*) break; } catch (XSocketBind& e) { - log((CLOG_DEBUG1 "bind failed: %s", e.getErrstr())); + log((CLOG_WARN "bind failed: %s", e.getErrstr())); // give up if we've waited too long if (timer.getTime() >= m_bindTimeout) { - log((CLOG_DEBUG1 "waited too long to bind, giving up")); + log((CLOG_ERR "waited too long to bind, giving up")); throw; }