for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Dmitry Gladyshev <[email protected]>
*/
namespace Rucaptcha;
use Psr\Log\AbstractLogger;
class Logger extends AbstractLogger
{
* @inheritDoc
public function log($level, $message, array $context = [])
echo date("d/m/y H:i:s", time()) . ' [' . $level . '] ' . $message . PHP_EOL;
}