Logging
This commit is contained in:
parent
8f0f69abd9
commit
7bdf34fcd1
|
@ -352,10 +352,7 @@ class LibraryController extends Zend_Controller_Action
|
|||
}
|
||||
|
||||
foreach ($files as $id) {
|
||||
Logging::info("aaa");
|
||||
$file = Application_Model_StoredFile::RecallById($id);
|
||||
Logging::info("bbb");
|
||||
Logging::info($file);
|
||||
if (isset($file)) {
|
||||
try {
|
||||
$res = $file->delete();
|
||||
|
|
|
@ -9,6 +9,7 @@ class Application_Model_Schedule
|
|||
*/
|
||||
public static function IsFileScheduledInTheFuture($p_fileId)
|
||||
{
|
||||
Logging::info($p_fileId);
|
||||
$sql = <<<SQL
|
||||
SELECT COUNT(*)
|
||||
FROM cc_schedule
|
||||
|
|
Loading…
Reference in New Issue