* Get rid of some extraneous debug log output from the last commit

0.6.5-rc1
Justin Clarke Casey 2009-04-28 19:54:57 +00:00
parent 898326b5e9
commit cac6971099
2 changed files with 4 additions and 4 deletions

View File

@ -110,8 +110,8 @@ namespace OpenSim.Region.CoreModules.World.Archiver
while ((data = archive.ReadEntry(out filePath, out entryType)) != null)
{
m_log.DebugFormat(
"[ARCHIVER]: Successfully read {0} ({1} bytes)", filePath, data.Length);
//m_log.DebugFormat(
// "[ARCHIVER]: Successfully read {0} ({1} bytes)", filePath, data.Length);
if (TarArchiveReader.TarEntryType.TYPE_DIRECTORY == entryType)
continue;

View File

@ -79,7 +79,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver.Tests
[Test]
public void TestSaveOarV0p2()
{
log4net.Config.XmlConfigurator.Configure();
//log4net.Config.XmlConfigurator.Configure();
ArchiverModule archiverModule = new ArchiverModule();
SerialiserModule serialiserModule = new SerialiserModule();
@ -202,7 +202,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver.Tests
[Test]
public void TestLoadOarV0p2()
{
log4net.Config.XmlConfigurator.Configure();
//log4net.Config.XmlConfigurator.Configure();
MemoryStream archiveWriteStream = new MemoryStream();
TarArchiveWriter tar = new TarArchiveWriter(archiveWriteStream);