Fixed: remove library CocoaLumberjack in XcodeCapp. This lib added memory leaks when using it in an NSOperation. We now simply use NSLog

This commit is contained in:
Alexandre Wilhelm
2015-11-13 10:48:02 -08:00
parent bacb7018cb
commit f41504ca57
40 changed files with 4504 additions and 3618 deletions
@@ -37,9 +37,8 @@ static const char *kCloseXcodeProjectScript =
[task setLaunchPath:@"/usr/bin/osascript"];
[task setArguments:[NSArray arrayWithObjects:arguments, nil]];
[task launch];
[task waitUntilExit];
DDLogVerbose(@"Osascript launched for the project %@", projectPath);
NSLog(@"Osascript launched for the project %@", projectPath);
}
@end