1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 03:50:56 +08:00
course-tencent-cloud/bootstrap/ConsoleErrorHandler.php
2020-09-24 20:06:36 +08:00

58 lines
1.1 KiB
PHP

<?php
namespace Bootstrap;
use App\Library\Logger as AppLogger;
use Phalcon\Config as PhConfig;
use Phalcon\Logger\Adapter\File as PhLogger;
use Phalcon\Mvc\User\Component;
class ConsoleErrorHandler extends Component
{
public function __construct()
{
set_error_handler([$this, 'handleError']);
set_exception_handler([$this, 'handleException']);
}
public function handleError($severity, $message, $file, $line)
{
throw new \ErrorException($message, 0, $severity, $file, $line);
}
/**
* @param \Throwable $e
*/
public function handleException($e)
{
$logger = $this->getLogger();
$content = sprintf('%s(%d): %s', $e->getFile(), $e->getLine(), $e->getMessage());
$logger->error($content);
echo $content . PHP_EOL;
}
/**
* @return PhConfig
*/
protected function getConfig()
{
return $this->getDI()->getShared('config');
}
/**
* @return PhLogger
*/
protected function getLogger()
{
$logger = new AppLogger();
return $logger->getInstance('console');
}
}