Skip to content

Commit

Permalink
Disable php error logging in production
Browse files Browse the repository at this point in the history
  • Loading branch information
jannisnikoy committed May 6, 2023
1 parent b466334 commit 582589f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private function test() {
*/
private function production() {
ini_set('display_errors', '0');
ini_set('error_reporting', E_ALL);
ini_set('error_reporting', '0');

$this->dbHost = $this->config->db->production->host;
$this->dbUser = $this->config->db->production->user;
Expand Down

0 comments on commit 582589f

Please sign in to comment.