mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
Comment out some startup logging lines to make up for the one I added earlier on.
Most of these are where the region modules are telling us they are disabled. Convention is only to log when enabled (even that is really noisy)
This commit is contained in:
@@ -80,16 +80,11 @@ namespace OpenSim.Region.OptionalModules.Avatar.Concierge
|
||||
m_config = config.Configs["Concierge"];
|
||||
|
||||
if (null == m_config)
|
||||
{
|
||||
m_log.Info("[Concierge]: no config found, plugin disabled");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!m_config.GetBoolean("enabled", false))
|
||||
{
|
||||
m_log.Info("[Concierge]: plugin disabled by configuration");
|
||||
return;
|
||||
}
|
||||
|
||||
m_enabled = true;
|
||||
|
||||
|
||||
@@ -113,9 +108,9 @@ namespace OpenSim.Region.OptionalModules.Avatar.Concierge
|
||||
{
|
||||
m_replacingChatModule = false;
|
||||
}
|
||||
|
||||
m_log.InfoFormat("[Concierge] {0} ChatModule", m_replacingChatModule ? "replacing" : "not replacing");
|
||||
|
||||
|
||||
// take note of concierge channel and of identity
|
||||
m_conciergeChannel = config.Configs["Concierge"].GetInt("concierge_channel", m_conciergeChannel);
|
||||
m_whoami = m_config.GetString("whoami", "conferencier");
|
||||
|
||||
Reference in New Issue
Block a user