* Address http://opensimulator.org/mantis/view.php?id=3076 by actually eliminating the redundant enable = true commented example
* Comment out some startup verbosity from the module if we haven't enabled it0.6.3-post-fixes
parent
2009d1aa01
commit
1c0df5e40f
|
@ -82,13 +82,13 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge
|
||||||
{
|
{
|
||||||
if ((_config = config.Configs["Concierge"]) == null)
|
if ((_config = config.Configs["Concierge"]) == null)
|
||||||
{
|
{
|
||||||
_log.InfoFormat("[Concierge]: no configuration section [Concierge] in OpenSim.ini: module not configured");
|
//_log.InfoFormat("[Concierge]: no configuration section [Concierge] in OpenSim.ini: module not configured");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!_config.GetBoolean("enabled", false))
|
if (!_config.GetBoolean("enabled", false))
|
||||||
{
|
{
|
||||||
_log.InfoFormat("[Concierge]: module disabled by OpenSim.ini configuration");
|
//_log.InfoFormat("[Concierge]: module disabled by OpenSim.ini configuration");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -968,7 +968,8 @@ InterregionComms = "RESTComms"
|
||||||
|
|
||||||
|
|
||||||
[Concierge]
|
[Concierge]
|
||||||
; enable = true
|
; Enable concierge module
|
||||||
|
; Default is false
|
||||||
enabled = false
|
enabled = false
|
||||||
|
|
||||||
; name of the concierge
|
; name of the concierge
|
||||||
|
|
Loading…
Reference in New Issue