1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 11:58:41 +08:00
course-tencent-cloud/bootstrap/ConsoleErrorHandler.php
2022-09-20 17:55:49 +08:00

71 lines
1.5 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);
$config = $this->getConfig();
if ($config->get('env') == 'dev') {
$trace = sprintf('%sTrace Content: %s', PHP_EOL, $e->getTraceAsString());
$logger->error($trace);
$content .= $trace;
}
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');
}
}