Monitorr / logarr

“Logarr” is a self-hosted PHP web app that consolidates, formats, and displays log and text files for easy analysis and monitoring.
https://github.com/Monitorr
MIT License
277 stars 12 forks source link

BUG: Add Error_Reporting to functions.php #110

Closed seanvree closed 5 years ago

seanvree commented 5 years ago

Issue: Default PHP error_reporting values will stop scripts from running.

Add following line to assets/config/config.php:

ini_set('error_reporting', E_ERROR);

seanvree commented 5 years ago

done.