switching permanent error_log off

This commit is contained in:
Ralf Becker 2013-05-16 16:02:18 +00:00
parent 0ab1a14036
commit 5cbeafec1d

View File

@ -1868,7 +1868,7 @@ ORDER BY cal_user_type, cal_usre_id
$alarms[$id] = (array)self::$alarm_cache[$id];
}
}
error_log(__METHOD__."(".array2string($cal_id).", ".array2string($update_cache).") returning from cache ".array2string($alarms));
//error_log(__METHOD__."(".array2string($cal_id).", ".array2string($update_cache).") returning from cache ".array2string($alarms));
return $alarms;
}
return $this->read_alarms_nocache($cal_id);
@ -1887,7 +1887,7 @@ ORDER BY cal_user_type, cal_usre_id
$alarms[$id] = $alarm;
}
}
error_log(__METHOD__."(".array2string($cal_id).") returning ".array2string($alarms));
//error_log(__METHOD__."(".array2string($cal_id).") returning ".array2string($alarms));
return $alarms;
}