Skip to content

Commit 6e4d69e

Browse files
author
Johannes Ekberg
committed
removed unnecessary logging
1 parent e1d9e68 commit 6e4d69e

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

Model/Novel.m

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ - (NSData *)contentsOfResource:(NSString *)res inDirectory:(NSString *)dir
101101
NSString *dirPath = [path stringByAppendingPathComponent:dir];
102102

103103
//Attempt to load from a Zip File first
104-
MTLog(@"Zip Path: %@", [dirPath stringByAppendingPathExtension:@"zip"]);
105104
unzFile zipFile = unzOpen([[dirPath stringByAppendingPathExtension:@"zip"] UTF8String]);
106105
if(zipFile != NULL)
107106
{
@@ -118,7 +117,6 @@ - (NSData *)contentsOfResource:(NSString *)res inDirectory:(NSString *)dir
118117
int readBytes = 0;
119118
if((readBytes = unzReadCurrentFile(zipFile, buffer, fileInfo.uncompressed_size)) >= 0)
120119
{
121-
MTLog(@"Uncompressed Size: %d, Read: %d", (NSInteger)fileInfo.uncompressed_size, readBytes);
122120
data = [[NSData alloc] initWithBytes:buffer length:readBytes];
123121
}
124122
free(buffer);

0 commit comments

Comments
 (0)