mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
Commit 1/2
* DB4o no longer crashes the sim on Startup * DB4o now crashes the sim on shutdown. * Variety of console verbosity fixes.
This commit is contained in:
@@ -70,7 +70,7 @@ namespace OpenSim.Framework.Communications.Caches
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("UserProfileCache.cs: user profile for user not found");
|
||||
Console.WriteLine("CACHE", "User profile for user not found");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -55,7 +55,7 @@ namespace OpenSim.Framework.Console
|
||||
this.componentname = componentname;
|
||||
this.cmdparser = cmdparser;
|
||||
this.m_silent = silent;
|
||||
System.Console.WriteLine("ServerConsole.cs - creating new local console");
|
||||
System.Console.WriteLine("Creating new local console");
|
||||
|
||||
if (String.IsNullOrEmpty(LogFile))
|
||||
{
|
||||
@@ -280,7 +280,7 @@ namespace OpenSim.Framework.Console
|
||||
}
|
||||
}
|
||||
|
||||
System.Console.Write("] ");
|
||||
System.Console.Write("] \t");
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -185,7 +185,7 @@ namespace OpenSim.Framework.Servers
|
||||
|
||||
public void Start()
|
||||
{
|
||||
MainLog.Instance.Verbose("HTTPD", "BaseHttpServer.cs: Starting up HTTP Server");
|
||||
MainLog.Instance.Verbose("HTTPD", "Starting up HTTP Server");
|
||||
|
||||
m_workerThread = new Thread(new ThreadStart(StartHTTP));
|
||||
m_workerThread.IsBackground = true;
|
||||
@@ -196,7 +196,7 @@ namespace OpenSim.Framework.Servers
|
||||
{
|
||||
try
|
||||
{
|
||||
MainLog.Instance.Status("HTTPD", "BaseHttpServer.cs: StartHTTP() - Spawned main thread OK");
|
||||
MainLog.Instance.Status("HTTPD", "Spawned main thread OK");
|
||||
m_httpListener = new HttpListener();
|
||||
|
||||
m_httpListener.Prefixes.Add("http://+:" + m_port + "/");
|
||||
|
||||
Reference in New Issue
Block a user