This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* A KISS style php logging class | |
* Automatically deletes log files after a period of time | |
* | |
* Usage: | |
* $log = new upLog('logs/'); | |
* $log->deleteAfterDays = 7; | |
* $log->setFilename = 'error'; |