From 5e4289dc809e67f71fc55a4d5530b3dc36255c9b Mon Sep 17 00:00:00 2001 From: crs Date: Sat, 14 Sep 2002 20:56:50 +0000 Subject: [PATCH] now logging bind failures as warnings. --- lib/server/CServer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }