Skip to content

Commit

Permalink
Silence debug output for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
alloy committed Oct 21, 2012
1 parent 102d675 commit 10e7bed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MacVim/MMFileBrowser/MMFileBrowserFSItem.m
Expand Up @@ -106,7 +106,7 @@ - (void)popTo:(short)toLevel;
NSMutableArray *children = [stackEntry objectAtIndex:1];
NSArray *remove = [stackEntry objectAtIndex:3];
for (MMFileBrowserFSItem *item in remove) {
NSLog(@"REMOVE: %@", item);
// NSLog(@"REMOVE: %@", item);
[children removeObject:item];
}
}
Expand Down Expand Up @@ -317,7 +317,7 @@ - (BOOL)loadChildrenRecursive:(BOOL)recursive expandedChildrenOnly:(BOOL)expande
char *path = (char *)[[self fullPath] UTF8String];
char *paths[2] = { path, NULL };

NSLog(@"Open dir: %s, recursive: %s", path, (recursive ? "YES" : "NO"));
// NSLog(@"Open dir: %s, recursive: %s", path, (recursive ? "YES" : "NO"));
// TODO we can sort with the third arg
FTS *root = fts_open(paths, FTS_LOGICAL | FTS_COMFOLLOW | FTS_NOCHDIR, NULL);
assert(root != NULL && @"Failed to open dir.");
Expand Down

0 comments on commit 10e7bed

Please sign in to comment.