remove additional fopen

This commit is contained in:
zebardy 2019-11-21 19:00:46 +00:00
parent 86c577c7c0
commit a783f90425

View File

@ -106,7 +106,7 @@ $app = new \Slim\App($appContainer);
// Load routes from separate file
require_once __DIR__ . '/routes.php';
$fp = fopen('/config/data/sql.log', 'a');
#$fp = fopen('/config/data/sql.log', 'a');
fwrite($fp, "!!!App starting run\n");
$run_time_start = microtime(true);
$app->run();