for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Koded package.
*
* (c) Mihail Binev <[email protected]>
* Please view the LICENSE distributed with this source code
* for the full copyright and license information.
*/
namespace Koded\Logging\Processors;
/**
* ErrorLog sends the log message to PHP system logger.
class ErrorLog extends Processor
{
protected function process(array $message): void
\error_log(strtr($this->format, $message), 0);
}