Created
April 7, 2023 20:50
-
-
Save estefanionsantos/05483e403ef62532a009bfafd55aad26 to your computer and use it in GitHub Desktop.
TestLog v0.4.0
This file contains hidden or 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 | |
use Rubricate\Logger\AbstractLogger; | |
class TestLog extends AbstractLogger | |
{ | |
protected static $ex = '.log'; | |
protected static function getDirFullPath() | |
{ | |
return '/path/to/directory/logs/'; | |
} | |
protected static function getPrefixToFile() | |
{ | |
return 'dev_'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment