From 3bf7c391874df9ba89b3d858dbe4ba3b9812df21 Mon Sep 17 00:00:00 2001 From: Bjorn Winckler Date: Mon, 11 Aug 2008 21:37:36 +0200 Subject: [PATCH] Remove NSLog --- src/MacVim/MMAppController.m | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/MacVim/MMAppController.m b/src/MacVim/MMAppController.m index 6a78c395..7f545bb7 100644 --- a/src/MacVim/MMAppController.m +++ b/src/MacVim/MMAppController.m @@ -1641,7 +1641,7 @@ fsEventCallback(ConstFSEventStreamRef streamRef, - (void)startWatchingVimDir { - NSLog(@"%s", _cmd); + //NSLog(@"%s", _cmd); #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5) if (fsEventStream) return; @@ -1660,13 +1660,13 @@ fsEventCallback(ConstFSEventStreamRef streamRef, kCFRunLoopDefaultMode); FSEventStreamStart(fsEventStream); - NSLog(@"Started FS event stream"); + //NSLog(@"Started FS event stream"); #endif } - (void)stopWatchingVimDir { - NSLog(@"%s", _cmd); + //NSLog(@"%s", _cmd); #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5) if (NULL == FSEventStreamStop) return; // FSEvent functions are weakly linked @@ -1676,7 +1676,7 @@ fsEventCallback(ConstFSEventStreamRef streamRef, FSEventStreamInvalidate(fsEventStream); FSEventStreamRelease(fsEventStream); fsEventStream = NULL; - NSLog(@"Stopped FS event stream"); + //NSLog(@"Stopped FS event stream"); } #endif @@ -1684,7 +1684,7 @@ fsEventCallback(ConstFSEventStreamRef streamRef, - (void)handleFSEvent { - NSLog(@"%s", _cmd); + //NSLog(@"%s", _cmd); [self clearPreloadCacheWithCount:-1]; // Several FS events may arrive in quick succession so make sure to cancel -- 2.11.4.GIT