mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-17 21:03:16 +00:00
Removed unnecessary NSLog calls
This commit is contained in:
@@ -59,8 +59,10 @@ static NGCardsSaxHandler *sax = nil;
|
||||
[parser setErrorHandler:sax];
|
||||
}
|
||||
else
|
||||
NSLog(@"ERROR(%s): did not find a parser for text/x-vcard!",
|
||||
__PRETTY_FUNCTION__);
|
||||
{
|
||||
//NSLog(@"ERROR(%s): did not find a parser for text/x-vcard!",
|
||||
// __PRETTY_FUNCTION__);
|
||||
}
|
||||
}
|
||||
|
||||
return parser;
|
||||
@@ -170,8 +172,8 @@ static NGCardsSaxHandler *sax = nil;
|
||||
{
|
||||
if (![aChild isKindOfClass: mappedClass])
|
||||
{
|
||||
NSLog (@"warning: new child to entity '%@': '%@' converted to '%@'",
|
||||
tag, childTag, NSStringFromClass(mappedClass));
|
||||
//NSLog (@"warning: new child to entity '%@': '%@' converted to '%@'",
|
||||
// tag, childTag, NSStringFromClass(mappedClass));
|
||||
newChild = [aChild elementWithClass: mappedClass];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
|
||||
- (BOOL)appendLine:(NSString *)_line {
|
||||
if (self->isFinished) {
|
||||
NSLog(@"WARNING[%s]: already finished!", __PRETTY_FUNCTION__);
|
||||
//NSLog(@"WARNING[%s]: already finished!", __PRETTY_FUNCTION__);
|
||||
return NO;
|
||||
}
|
||||
// limit length to 75 chars
|
||||
|
||||
@@ -77,8 +77,8 @@ static NSString *gmtcalfmt = @"%Y%m%dT%H%M%SZ";
|
||||
return [self icalStringInGMT];
|
||||
else {
|
||||
/* not in GMT */
|
||||
NSLog(@"WARNING(%s): arbitary timezones not supported yet: %@",
|
||||
__PRETTY_FUNCTION__, _tz);
|
||||
//NSLog(@"WARNING(%s): arbitary timezones not supported yet: %@",
|
||||
// __PRETTY_FUNCTION__, _tz);
|
||||
return [self icalStringInGMT];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -276,7 +276,9 @@
|
||||
}
|
||||
}
|
||||
else
|
||||
NSLog(@"Cannot parse iCal duration value: '%@'", self);
|
||||
{
|
||||
//NSLog(@"Cannot parse iCal duration value: '%@'", self);
|
||||
}
|
||||
|
||||
if (isNegative)
|
||||
ti = -ti;
|
||||
|
||||
@@ -59,8 +59,8 @@ static NSTimeZone *defTZ = nil;
|
||||
[self takeValue:_value forXKey:_key];
|
||||
}
|
||||
else {
|
||||
NSLog(@"0x%08x[%@]: ignoring attempt to set unbound key '%@'",
|
||||
self, NSStringFromClass([self class]), _key);
|
||||
//NSLog(@"0x%08x[%@]: ignoring attempt to set unbound key '%@'",
|
||||
// self, NSStringFromClass([self class]), _key);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user