change port change message from error to info

This commit is contained in:
zzz
2010-11-30 15:22:17 +00:00
parent c97e72d050
commit 578d656f9d

View File

@ -123,7 +123,7 @@ class UDPEndpoint {
if (_listenPort > 0) if (_listenPort > 0)
_log.error("SSU Unable to bind to requested port " + _listenPort + ", using random port " + port); _log.error("SSU Unable to bind to requested port " + _listenPort + ", using random port " + port);
else else
_log.error("SSU selected random port " + port); _log.logAlways(Log.INFO, "UDP selected random port " + port);
} }
_listenPort = port; _listenPort = port;
return socket; return socket;