mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-21 18:00:43 +00:00
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:
@@ -242,7 +242,7 @@ NSString * const XCCCappuccinoProjectLastEventIDKey = @"XCCCappuccinoPro
|
||||
|
||||
if (![self shouldIgnoreDirectoryNamed:filename] && ![self pathMatchesIgnoredPaths:path cappuccinoProjectIgnoredPathPredicates:aCappuccinoProject.ignoredPathPredicates])
|
||||
{
|
||||
DDLogVerbose(@"Watching symlinked directory: %@", path);
|
||||
NSLog(@"Watching symlinked directory: %@", path);
|
||||
|
||||
[pathsToWatch addObject:path];
|
||||
}
|
||||
@@ -393,11 +393,11 @@ NSString * const XCCCappuccinoProjectLastEventIDKey = @"XCCCappuccinoPro
|
||||
NSArray *parsedPaths = [XCCCappuccinoProject parseIgnorePaths:ignoredPatterns basePath:self.projectPath];
|
||||
[self.ignoredPathPredicates addObjectsFromArray:parsedPaths];
|
||||
|
||||
DDLogVerbose(@"Content of xcodecapp-ignorepath correctly updated %@", self.ignoredPathPredicates);
|
||||
NSLog(@"Content of xcodecapp-ignorepath correctly updated %@", self.ignoredPathPredicates);
|
||||
}
|
||||
@catch(NSException *exception)
|
||||
{
|
||||
DDLogVerbose(@"Content of xcodecapp-ignorepath does not math the expected input");
|
||||
NSLog(@"Content of xcodecapp-ignorepath does not math the expected input");
|
||||
self.ignoredPathPredicates = [@[] mutableCopy];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user