aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-04-02 02:29:42 +0100
committerJustin Clark-Casey (justincc)2011-04-02 02:29:42 +0100
commit4f56c732bc00588cd8ced1be85bc4d13815f86bd (patch)
treec243d16e6cd085cf45628ea40306a19f83116614 /OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs
parentIf land is not group owned (group ID is always UUID.Zero) then don't check if... (diff)
downloadopensim-SC_OLD-4f56c732bc00588cd8ced1be85bc4d13815f86bd.zip
opensim-SC_OLD-4f56c732bc00588cd8ced1be85bc4d13815f86bd.tar.gz
opensim-SC_OLD-4f56c732bc00588cd8ced1be85bc4d13815f86bd.tar.bz2
opensim-SC_OLD-4f56c732bc00588cd8ced1be85bc4d13815f86bd.tar.xz
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)
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs b/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs
index c0975ea..9255791 100644
--- a/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs
+++ b/OpenSim/Region/CoreModules/Scripting/EMailModules/EmailModule.cs
@@ -111,14 +111,12 @@ namespace OpenSim.Region.CoreModules.Scripting.EmailModules
111 { 111 {
112 if ((SMTPConfig = m_Config.Configs["SMTP"]) == null) 112 if ((SMTPConfig = m_Config.Configs["SMTP"]) == null)
113 { 113 {
114 m_log.InfoFormat("[SMTP] SMTP server not configured");
115 m_Enabled = false; 114 m_Enabled = false;
116 return; 115 return;
117 } 116 }
118 117
119 if (!SMTPConfig.GetBoolean("enabled", false)) 118 if (!SMTPConfig.GetBoolean("enabled", false))
120 { 119 {
121 m_log.InfoFormat("[SMTP] module disabled in configuration");
122 m_Enabled = false; 120 m_Enabled = false;
123 return; 121 return;
124 } 122 }