aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-05-15 22:48:05 +0100
committerJustin Clark-Casey (justincc)2014-05-15 22:48:05 +0100
commitd2c738fc09e4b4c9668cf5fb0114f909b6d6b808 (patch)
tree43b71bc3f7d3cae55b122801a97fa9fc8b931764 /OpenSim
parentEscape find string in PgSQL core groups plugin (diff)
downloadopensim-SC_OLD-d2c738fc09e4b4c9668cf5fb0114f909b6d6b808.zip
opensim-SC_OLD-d2c738fc09e4b4c9668cf5fb0114f909b6d6b808.tar.gz
opensim-SC_OLD-d2c738fc09e4b4c9668cf5fb0114f909b6d6b808.tar.bz2
opensim-SC_OLD-d2c738fc09e4b4c9668cf5fb0114f909b6d6b808.tar.xz
Don't warn on not seeing [Groups] Robust section for core groups as this does not contain any mandatory parameters and won't be present on older installations.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs b/OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs
index 828965f..33dc301 100644
--- a/OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs
+++ b/OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs
@@ -64,8 +64,8 @@ namespace OpenSim.Groups
64 key = groupsConfig.GetString("SecretKey", string.Empty); 64 key = groupsConfig.GetString("SecretKey", string.Empty);
65 m_log.DebugFormat("[Groups.RobustConnector]: Starting with secret key {0}", key); 65 m_log.DebugFormat("[Groups.RobustConnector]: Starting with secret key {0}", key);
66 } 66 }
67 else 67// else
68 m_log.WarnFormat("[Groups.RobustConnector]: Unable to find {0} section in configuration", m_ConfigName); 68// m_log.DebugFormat("[Groups.RobustConnector]: Unable to find {0} section in configuration", m_ConfigName);
69 69
70 m_GroupsService = new GroupsService(config); 70 m_GroupsService = new GroupsService(config);
71 71