aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice
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/OptionalModules/Avatar/Voice/FreeSwitchVoice
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/OptionalModules/Avatar/Voice/FreeSwitchVoice')
-rw-r--r--OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs
index 05a1c3b..7909d8a 100644
--- a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs
+++ b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs
@@ -106,16 +106,10 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
106 m_Config = config.Configs["FreeSwitchVoice"]; 106 m_Config = config.Configs["FreeSwitchVoice"];
107 107
108 if (m_Config == null) 108 if (m_Config == null)
109 {
110 m_log.Info("[FreeSwitchVoice] no config found, plugin disabled");
111 return; 109 return;
112 }
113 110
114 if (!m_Config.GetBoolean("Enabled", false)) 111 if (!m_Config.GetBoolean("Enabled", false))
115 {
116 m_log.Info("[FreeSwitchVoice] plugin disabled by configuration");
117 return; 112 return;
118 }
119 113
120 try 114 try
121 { 115 {