Comment two very spammy debug messages that the usr can't do anything about
Make a third one conditional.melanie
parent
32c1127809
commit
a17db1b3cd
|
@ -329,6 +329,7 @@ namespace OpenSim.Region.OptionalModules.Materials
|
||||||
AssetBase matAsset = m_scene.AssetService.Get(id.ToString());
|
AssetBase matAsset = m_scene.AssetService.Get(id.ToString());
|
||||||
if (matAsset == null || matAsset.Data == null || matAsset.Data.Length == 0 )
|
if (matAsset == null || matAsset.Data == null || matAsset.Data.Length == 0 )
|
||||||
{
|
{
|
||||||
|
if (id != UUID.Zero)
|
||||||
m_log.WarnFormat("[Materials]: Prim \"{0}\" ({1}) contains unknown material ID {2}", part.Name, part.UUID, id);
|
m_log.WarnFormat("[Materials]: Prim \"{0}\" ({1}) contains unknown material ID {2}", part.Name, part.UUID, id);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -454,7 +454,7 @@ namespace OpenSim.Region.PhysicsModule.ubODEMeshing
|
||||||
|
|
||||||
if (physicsParms == null)
|
if (physicsParms == null)
|
||||||
{
|
{
|
||||||
m_log.WarnFormat("[MESH]: unknown mesh type for prim {0}",primName);
|
//m_log.WarnFormat("[MESH]: unknown mesh type for prim {0}",primName);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -712,7 +712,7 @@ namespace OpenSim.Region.PhysicsModule.ubODEMeshing
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// if neither mesh or decomposition present, warn and use convex
|
// if neither mesh or decomposition present, warn and use convex
|
||||||
m_log.WarnFormat("[MESH]: Data for PRIM shape type ( mesh or decomposition) not found for prim {0}",primName);
|
//m_log.WarnFormat("[MESH]: Data for PRIM shape type ( mesh or decomposition) not found for prim {0}",primName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
vs.Clear();
|
vs.Clear();
|
||||||
|
|
Loading…
Reference in New Issue