diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Servers/BaseHttpServer.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/BaseHttpServer.cs b/OpenSim/Framework/Servers/BaseHttpServer.cs index 3f3b1b8..fc2d36a 100644 --- a/OpenSim/Framework/Servers/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/BaseHttpServer.cs | |||
@@ -1424,8 +1424,12 @@ namespace OpenSim.Framework.Servers | |||
1424 | } | 1424 | } |
1425 | catch (Exception e) | 1425 | catch (Exception e) |
1426 | { | 1426 | { |
1427 | m_log.Warn("[HTTPD]: Error - " + e.Message); | 1427 | m_log.Error("[HTTPD]: Error - " + e.Message); |
1428 | m_log.Warn("Tip: Do you have permission to listen on port " + m_port + "," + m_sslport + "?"); | 1428 | m_log.Error("[HTTPD]: Tip: Do you have permission to listen on port " + m_port + ", " + m_sslport + "?"); |
1429 | |||
1430 | // We want this exception to halt the entire server since in current configurations we aren't too | ||
1431 | // useful without inbound HTTP. | ||
1432 | throw e; | ||
1429 | } | 1433 | } |
1430 | } | 1434 | } |
1431 | 1435 | ||