diff options
author | Matt Holgate <matt@emobix.co.uk> | 2014-07-16 15:32:51 +0100 |
---|---|---|
committer | Matt Holgate <matt@emobix.co.uk> | 2014-07-16 15:32:51 +0100 |
commit | 6483930539da2a48c37da7b508f05d71fc2c2d56 (patch) | |
tree | 58dd541362d5ef87c91d9976589ecedad7ec7463 /platform/ios/Classes | |
parent | 0beb79258649f97767f7572659a81b588c3357ff (diff) | |
download | mupdf-6483930539da2a48c37da7b508f05d71fc2c2d56.tar.xz |
Remove iOS debug output.
This debug output was listing the names of all the files to the iOS console
every 3 seconds. Remove it.
Diffstat (limited to 'platform/ios/Classes')
-rw-r--r-- | platform/ios/Classes/MuLibraryController.m | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/platform/ios/Classes/MuLibraryController.m b/platform/ios/Classes/MuLibraryController.m index ef5c9624..15bf9f4c 100644 --- a/platform/ios/Classes/MuLibraryController.m +++ b/platform/ios/Classes/MuLibraryController.m @@ -49,7 +49,6 @@ static void showAlert(NSString *msg, NSString *filename) BOOL isdir; while (file = [direnum nextObject]) { NSString *filepath = [docdir stringByAppendingPathComponent:file]; - NSLog(@"file %@\n", file); if ([fileman fileExistsAtPath:filepath isDirectory:&isdir] && !isdir) { [outfiles addObject:file]; } |