PHP code example of enrise / psr-log-extension
1. Go to this page and download the library: Download enrise/psr-log-extension library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
enrise / psr-log-extension example snippets
use Psr\Log\LoggerAwareInterface;
use Enrise\Log\LoggerAwareTrait;
class Foo implements LoggerAwareInterface
{
use LoggerAwareTrait;
function bar()
{
$this->logDebug('Write a debug statement to the log');
}
}
$foo = new Foo();
$foo->bar(); // All fine
$foo->setLogger(new ConcreteLogger());
$foo->bar(); // Writes to the logger as usual