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