* minor: remove load oar logging I accidentally left in a few commits ago
* reduce noisiness of uuid gatherer * stop bothering to pointless complain about directory tar entries when loading an oar0.6.5-rc1
parent
64341fc965
commit
6cad71d5ec
|
@ -110,12 +110,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
|||
//m_log.DebugFormat(
|
||||
// "[ARCHIVER]: Successfully read {0} ({1} bytes)}", filePath, data.Length);
|
||||
|
||||
if (TarArchiveReader.TarEntryType.TYPE_DIRECTORY == entryType)
|
||||
{
|
||||
m_log.WarnFormat(
|
||||
"[ARCHIVER]: Ignoring directory entry {0}", filePath);
|
||||
}
|
||||
else if (filePath.StartsWith(ArchiveConstants.OBJECTS_PATH))
|
||||
if (filePath.StartsWith(ArchiveConstants.OBJECTS_PATH))
|
||||
{
|
||||
serialisedSceneObjects.Add(m_asciiEncoding.GetString(data));
|
||||
}
|
||||
|
@ -172,12 +167,13 @@ namespace OpenSim.Region.CoreModules.World.Archiver
|
|||
|
||||
foreach (string serialisedSceneObject in serialisedSceneObjects)
|
||||
{
|
||||
/*
|
||||
m_log.DebugFormat("[ARCHIVER]: Loading xml with raw size {0}", serialisedSceneObject.Length);
|
||||
|
||||
// Really large xml files (multi megabyte) appear to cause
|
||||
// memory problems
|
||||
// when loading the xml. But don't enable this check yet
|
||||
/*
|
||||
|
||||
if (serialisedSceneObject.Length > 5000000)
|
||||
{
|
||||
m_log.Error("[ARCHIVER]: Ignoring xml since size > 5000000);");
|
||||
|
|
|
@ -110,8 +110,8 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
/// <param name="assetUuids">The assets gathered</param>
|
||||
public void GatherAssetUuids(SceneObjectGroup sceneObject, IDictionary<UUID, int> assetUuids)
|
||||
{
|
||||
m_log.DebugFormat(
|
||||
"[ASSET GATHERER]: Getting assets for object {0}, {1}", sceneObject.Name, sceneObject.UUID);
|
||||
// m_log.DebugFormat(
|
||||
// "[ASSET GATHERER]: Getting assets for object {0}, {1}", sceneObject.Name, sceneObject.UUID);
|
||||
|
||||
foreach (SceneObjectPart part in sceneObject.GetParts())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue