Remove logs

This commit is contained in:
elasota
2021-03-30 00:00:50 -04:00
parent b64c904558
commit 7951f579e0
4 changed files with 0 additions and 65 deletions

View File

@@ -100,8 +100,6 @@ namespace PortabilityLayer
if (!stream)
return nullptr;
fprintf(stderr, "Composite file opened\n");
ZipFileProxy *zipFile = ZipFileProxy::Create(stream);
if (!zipFile)
{
@@ -109,8 +107,6 @@ namespace PortabilityLayer
return nullptr;
}
fprintf(stderr, "Zip proxy created\n");
size_t metaIndex = 0;
if (!zipFile->IndexFile("!!meta", metaIndex))
{
@@ -118,8 +114,6 @@ namespace PortabilityLayer
return nullptr;
}
fprintf(stderr, "Meta file indexed\n");
MacFilePropertiesSerialized mfps;
GpIOStream *metaStream = zipFile->OpenFile(metaIndex);
@@ -130,8 +124,6 @@ namespace PortabilityLayer
return nullptr;
}
fprintf(stderr, "Meta data deserialized\n");
if (!metaStream->ReadExact(mfps.m_data, sizeof(mfps.m_data)))
{
metaStream->Close();
@@ -160,8 +152,6 @@ namespace PortabilityLayer
stream = nullptr;
}
fprintf(stderr, "Composite constructed\n");
CompositeFile *compositeFile = CompositeFileImpl::Create(dirID, filename, stream, zipFile, mfp, hasResources, hasData, hasData ? dataIndex : 0);
if (!compositeFile)
{