remove memory usage log statements

This commit is contained in:
drigato 2014-08-15 16:25:37 -04:00
parent f863f4dfcf
commit 33f397f577
2 changed files with 1 additions and 7 deletions

View file

@ -967,7 +967,6 @@ SQL;
public static function getSchedule($p_fromDateTime = null, $p_toDateTime = null)
{
Logging::info(memory_get_usage()/(1024*1024));
//generate repeating shows if we are fetching the schedule
//for days beyond the shows_populated_until value in cc_pref
$needScheduleUntil = $p_toDateTime;
@ -976,7 +975,7 @@ SQL;
$needScheduleUntil->add(new DateInterval("P1D"));
}
Application_Model_Show::createAndFillShowInstancesPastPopulatedUntilDate($needScheduleUntil);
Logging::info(memory_get_usage()/(1024*1024));
list($range_start, $range_end) = self::getRangeStartAndEnd($p_fromDateTime, $p_toDateTime);
$data = array();