Stop AuthorizationService from throwing an error if it's not configured.

Optional services should not cause red spew when they're not wanted
mysql-performance
Melanie 2009-12-07 14:12:53 +00:00
parent 4c61fcfc40
commit ad2c23d507
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ namespace OpenSim.Services.Connectors
IConfig authorizationConfig = source.Configs["AuthorizationService"];
if (authorizationConfig == null)
{
m_log.Error("[AUTHORIZATION CONNECTOR]: AuthorizationService missing from OpenSim.ini");
m_log.Info("[AUTHORIZATION CONNECTOR]: AuthorizationService missing from OpenSim.ini");
throw new Exception("Authorization connector init error");
}