mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-21 19:22:45 +08:00
63 lines
1.3 KiB
PHP
63 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace Bootstrap;
|
|
|
|
use App\Library\Logger as AppLogger;
|
|
use Phalcon\Config as PhConfig;
|
|
use Phalcon\Di\Injectable;
|
|
use Phalcon\Logger\Adapter\File as PhLogger;
|
|
|
|
class ConsoleErrorHandler extends Injectable
|
|
{
|
|
|
|
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');
|
|
}
|
|
|
|
}
|