Remove stray debug messages

This commit is contained in:
Pieter de Bie
2008-11-01 21:14:57 +01:00
parent 4cefe8ee92
commit 304a1a5d03
7 changed files with 3 additions and 14 deletions
+2 -2
View File
@@ -24,8 +24,8 @@
#endif
if(self = [super init]) {
if([[NSBundle bundleWithPath:@"/System/Library/PrivateFrameworks/QuickLookUI.framework"] load])
NSLog(@"Quick Look loaded!");
if(![[NSBundle bundleWithPath:@"/System/Library/PrivateFrameworks/QuickLookUI.framework"] load])
NSLog(@"Could not load QuickLook");
self.cliProxy = [PBCLIProxy new];
}
-1
View File
@@ -14,7 +14,6 @@
@synthesize mouseDownPoint;
- (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL) local
{
NSLog(@"a");
return NSDragOperationCopy;
}
-1
View File
@@ -19,7 +19,6 @@
[defaultValues setObject:[NSNumber numberWithInt:kDefaultVerticalLineLength]
forKey:kCommitMessageViewVerticalLineLength];
[[NSUserDefaults standardUserDefaults] registerDefaults:defaultValues];
NSLog(@"registered defaults: %@", defaultValues);
}
+ (int) commitMessageViewVerticalLineLength
-1
View File
@@ -107,7 +107,6 @@
// If buffer is full, we go for another round
if (buffer[BUFFERSIZE - 2] != 0) {
//NSLog(@"Line too long!");
buffer[BUFFERSIZE - 2] = 0;
continue;
}
-4
View File
@@ -103,10 +103,7 @@
if (!localFileName)
localFileName = [PBEasyFS tmpDirWithPrefix: path];
NSLog(@"Exporting children..");
for (PBGitTree* child in [self children]) {
NSLog(@"Telling %@ to save to %@!", [child fullPath], localFileName);
[child saveToFolder: localFileName];
}
@@ -142,7 +139,6 @@
return children;
NSString* ref = [self refSpec];
NSLog(@"Starting get for %@", ref);
NSFileHandle* handle = [repository handleForArguments:[NSArray arrayWithObjects:@"show", ref, nil]];
[handle readLine];
-1
View File
@@ -20,7 +20,6 @@
{
NSString *path = [NSString stringWithFormat:@"html/views/%@", startFile];
NSString* file = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html" inDirectory:path];
NSLog(@"path: %@, file: %@", path, file);
NSURLRequest * request = [NSURLRequest requestWithURL:[NSURL fileURLWithPath:file]];
callbacks = [NSMapTable mapTableWithKeyOptions:(NSPointerFunctionsObjectPointerPersonality|NSPointerFunctionsStrongMemory) valueOptions:(NSPointerFunctionsObjectPointerPersonality|NSPointerFunctionsStrongMemory)];
+1 -4
View File
@@ -80,10 +80,7 @@
- (void) removeRef:(RefMenuItem *)sender
{
NSLog(@"Removing ref: %@", [sender ref]);
if ([historyController.repository removeRef: [sender ref]])
NSLog(@"Deletion succesful!");
else
if (![historyController.repository removeRef: [sender ref]])
NSLog(@"Deletion failed!");
}