PHP-PDO-MySQL-Class icon indicating copy to clipboard operation
PHP-PDO-MySQL-Class copied to clipboard

How to turn off logs?

Open seojake opened this issue 6 years ago • 1 comments

I want to turn off logs, as I don't really want to be accessing this from the front end of my website.

How do I do this?

seojake avatar Mar 29 '19 15:03 seojake

PDO.class.php Edit the following method into this:

private function ExceptionLog(PDOException $e, $sql = "", $method = '', $parameters = array())
{
    return ;
}

lincanbin avatar Mar 29 '19 16:03 lincanbin