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:
Justin Clark-Casey (justincc)
2011-04-02 02:29:42 +01:00
parent 7bba0177fe
commit 4f56c732bc
7 changed files with 4 additions and 36 deletions

View File

@@ -111,14 +111,12 @@ namespace OpenSim.Region.CoreModules.Scripting.EmailModules
{
if ((SMTPConfig = m_Config.Configs["SMTP"]) == null)
{
m_log.InfoFormat("[SMTP] SMTP server not configured");
m_Enabled = false;
return;
}
if (!SMTPConfig.GetBoolean("enabled", false))
{
m_log.InfoFormat("[SMTP] module disabled in configuration");
m_Enabled = false;
return;
}