Remove some debugging from simian connectors.
parent
976514d39a
commit
03698121ed
|
@ -79,7 +79,11 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
|||
{
|
||||
m_simianURL = m_config.GetString("SimianServiceURL");
|
||||
if (String.IsNullOrEmpty(m_simianURL))
|
||||
m_log.ErrorFormat("[SimianGrid] service URL is not defined");
|
||||
{
|
||||
//m_log.DebugFormat("[SimianGrid] service URL is not defined");
|
||||
m_enabled = false;
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
|
@ -74,11 +74,15 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
|||
{
|
||||
m_simianURL = m_config.GetString("SimianServiceURL");
|
||||
if (String.IsNullOrEmpty(m_simianURL))
|
||||
m_log.ErrorFormat("[SimianGrid] service URL is not defined");
|
||||
{
|
||||
// m_log.DebugFormat("[SimianGrid] service URL is not defined");
|
||||
m_enabled = false;
|
||||
return;
|
||||
}
|
||||
|
||||
InitialiseSimCap();
|
||||
SimulatorCapability = SimulatorCapability.Trim();
|
||||
m_log.WarnFormat("[SimianExternalCaps] using {0} as simulator capability",SimulatorCapability);
|
||||
m_log.InfoFormat("[SimianExternalCaps] using {0} as simulator capability",SimulatorCapability);
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
|
|
Loading…
Reference in New Issue