chore(core): removed NSLog calls

This commit is contained in:
Ludovic Marcotte
2019-11-07 08:17:35 -05:00
parent 4475ac651d
commit 3a8336484c

View File

@@ -278,14 +278,12 @@ static NSString *sieveScriptName = @"sogo";
{
v = [line substringToIndex: [line length]-2];
[theRequirements addObject: v];
NSLog(@"require: |%@|", v);
}
// Else handle lines like: require ["imapflags","vacation"];
else if ([line characterAtIndex: 0] == '[')
{
o = [[line substringToIndex: [line length]-1] objectFromJSONString];
[theRequirements addObjectsFromArray: o];
NSLog(@"requires: |%@|", o);
}
}
else