Skip to content

Instantly share code, notes, and snippets.

@estefanionsantos
Created April 7, 2023 20:50
Show Gist options
  • Save estefanionsantos/05483e403ef62532a009bfafd55aad26 to your computer and use it in GitHub Desktop.
Save estefanionsantos/05483e403ef62532a009bfafd55aad26 to your computer and use it in GitHub Desktop.
TestLog v0.4.0
<?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