Remove NSLogs

This commit is contained in:
Chris Goldsby 2024-03-28 08:57:31 -04:00 committed by GitHub
parent 9176021cf0
commit e0a5675cd7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,10 +12,8 @@ NSString* defaultSuiteName = nil;
- (NSUserDefaults *) getDefaultUser{
if(defaultSuiteName == nil){
NSLog(@"No prefer suite for userDefaults. Using standard one.");
return [NSUserDefaults standardUserDefaults];
} else {
NSLog(@"Using %@ suite for userDefaults", defaultSuiteName);
return [[NSUserDefaults alloc] initWithSuiteName:defaultSuiteName];
}
}