Pimcore\Log\Maintenance::httpErrorLogCleanup PHP Метод

httpErrorLogCleanup() публичный Метод

public httpErrorLogCleanup ( )
    public function httpErrorLogCleanup()
    {
        // keep the history for max. 7 days (=> exactly 144h), according to the privacy policy (EU/German Law)
        // it's allowed to store the IP for 7 days for security reasons (DoS, ...)
        $limit = time() - 6 * 86400;
        $db = \Pimcore\Db::get();
        $db->delete("http_error_log", "date < " . $limit);
    }