Remove just previously added logging statements
This commit is contained in:
parent
c7c683966d
commit
e17b330186
2 changed files with 2 additions and 5 deletions
|
@ -9,7 +9,6 @@ class Application_Model_Schedule
|
|||
*/
|
||||
public static function IsFileScheduledInTheFuture($p_fileId)
|
||||
{
|
||||
Logging::info($p_fileId);
|
||||
$sql = <<<SQL
|
||||
SELECT COUNT(*)
|
||||
FROM cc_schedule
|
||||
|
@ -18,7 +17,6 @@ WHERE file_id = :file_id
|
|||
SQL;
|
||||
$count = Application_Common_Database::prepareAndExecute( $sql, array(
|
||||
':file_id'=>$p_fileId), 'column');
|
||||
Logging::info($count);
|
||||
return (is_numeric($count) && ($count != '0'));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue