* minor: A few tiny bits of documentation and log message cleanup before starting something different
parent
2cf0be7d58
commit
18ba6c3510
|
@ -232,7 +232,6 @@ namespace OpenSim.ApplicationPlugins.Rest
|
|||
// Get plugin specific config
|
||||
_pluginConfig = openSim.ConfigSource.Source.Configs[ConfigName];
|
||||
|
||||
|
||||
m_log.InfoFormat("{0} Rest Plugins Enabled", MsgID);
|
||||
}
|
||||
catch (Exception e)
|
||||
|
|
|
@ -53,13 +53,12 @@ namespace OpenSim.Region.ClientStack
|
|||
|
||||
protected BaseHttpServer m_httpServer;
|
||||
protected uint m_httpServerPort;
|
||||
|
||||
protected CommunicationsManager m_commsManager;
|
||||
public CommunicationsManager CommunicationsManager {
|
||||
|
||||
public CommunicationsManager CommunicationsManager
|
||||
{
|
||||
get { return m_commsManager; }
|
||||
}
|
||||
|
||||
protected SceneManager m_sceneManager = new SceneManager();
|
||||
protected CommunicationsManager m_commsManager;
|
||||
|
||||
protected StorageManager m_storageManager;
|
||||
|
||||
|
@ -69,6 +68,7 @@ namespace OpenSim.Region.ClientStack
|
|||
{
|
||||
get { return m_sceneManager; }
|
||||
}
|
||||
protected SceneManager m_sceneManager = new SceneManager();
|
||||
|
||||
protected abstract void Initialize();
|
||||
protected abstract PhysicsScene GetPhysicsScene();
|
||||
|
|
|
@ -33,7 +33,7 @@ using OpenSim.Region.Environment.Scenes;
|
|||
namespace OpenSim.Framework
|
||||
{
|
||||
/// <summary>
|
||||
/// An interface for accessing and managing agent inventory
|
||||
/// An interface for a module that manages inter-agent inventory offers and transfers.
|
||||
/// </summary>
|
||||
public interface IInventoryTransferModule
|
||||
{
|
||||
|
|
|
@ -244,7 +244,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Inventory.Transfer
|
|||
if (item == null)
|
||||
reason += " Item not found.";
|
||||
client.SendAgentAlertMessage("Unable to delete "+
|
||||
"received item"+reason, false);
|
||||
"received item" + reason, false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -38,6 +38,9 @@ namespace OpenSim.Region.Environment.Scenes
|
|||
{
|
||||
public delegate void RestartSim(RegionInfo thisregion);
|
||||
|
||||
/// <summary>
|
||||
/// Manager for adding, closing and restarting scenes.
|
||||
/// </summary>
|
||||
public class SceneManager
|
||||
{
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
|
|
@ -84,7 +84,7 @@ namespace OpenSim.ApplicationPlugins.LoadBalancer
|
|||
|
||||
public void Initialise(OpenSimBase openSim)
|
||||
{
|
||||
m_log.Info("[BALANCER] " + "Entering Initialize()");
|
||||
m_log.Info("[BALANCER]: " + "Entering Initialize()");
|
||||
|
||||
proxyURL = openSim.ConfigSource.Source.Configs["Network"].GetString("proxy_url", "");
|
||||
if (proxyURL.Length == 0) return;
|
||||
|
|
Loading…
Reference in New Issue