From f310d72604f1f7b88ab987cdfddff9506931aaf3 Mon Sep 17 00:00:00 2001 From: Matthieu Lalonde Date: Tue, 7 Jun 2011 09:26:19 -0400 Subject: [PATCH] FIXED - Removed some extra logging --- DDWRT_MonitorAppDelegate.m | 3 --- 1 file changed, 3 deletions(-) diff --git a/DDWRT_MonitorAppDelegate.m b/DDWRT_MonitorAppDelegate.m index df4a364..7de31b1 100644 --- a/DDWRT_MonitorAppDelegate.m +++ b/DDWRT_MonitorAppDelegate.m @@ -752,13 +752,11 @@ NSRange rangeDays = [strUptime rangeOfString:keyDays]; if (rangeDay.location != NSNotFound) { - NSLog(@"1 day"); seconds += 86400; // One day extra strUptime = [strUptime substringFromIndex:(rangeDay.location + [keyDay length])]; } else if (rangeDays.location != NSNotFound) { uint32_t days = strtoull([[strUptime substringToIndex:rangeDays.location] UTF8String], NULL, 0); - NSLog(@"%u days", days); seconds += (days * 86400); @@ -771,7 +769,6 @@ double multiplicator = pow(60, (2 - ii)); if (multiplicator == 0) multiplicator = 1; - NSLog(@"Multiplicator %f", multiplicator); seconds += (multiplicator * strtoull([[parts objectAtIndex:ii] UTF8String], NULL, 0)); }