Artisan命令的自定义错误和异常处理程序

时间:2014-04-14 18:15:23

标签: php laravel laravel-4 exception-handling raygun.io

我正在尝试从Laravel 4工匠命令向raygun.io发送错误和异常,但Laravel似乎已经拥有了自己的异常处理程序。

我可以在命令中指定自定义方法吗?目前,我正在尝试为错误和异常指定自定义处理程序,如下所示:

<?php
class ParseCommand extends Command
{
    /**
     * The console command name.
     *
     * @var string
     */
    protected $name = 'my:parse';

    protected $descriptino = '...';

    protected $raygun = null;

    /**
     * __construct
     */
    public function __construct()
    {
        parent::__construct();

        // Setup custom error and exception handlers
        $raygun_api_key = \Config::get('tms.raygun_api_key');
        $this->raygun = new RaygunClient("MUzf+furi8E9tffcHAaJVw==");
        set_exception_handler([$this, 'exceptionHandler']);
        set_error_handler([$this, 'errorHandler']);
    }

    /**
     * Custom exception handler.
     *
     * @param $exception
     */
    public function exceptionHandler($exception)
    {
        $this->raygun->SendException($exception);
    }

    /**
     * Custom error handler.
     *
     * @param $errno
     * @param $errstr
     * @param $errfile
     * @param $errline
     */
    public function errorHandler($errno, $errstr, $errfile, $errline)
    {
        $this->raygun->SendError($errno, $errstr, $errfile, $errline);
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function fire()
    {
        $start_time = microtime(true);
        throw new \Exception("Oopsie!");

        // Omitted for brevity...
    }
}

当然,处理程序永远不会执行,因为Artisan正在使用它自己的自定义实现来抓取它们。

1 个答案:

答案 0 :(得分:2)

文件夹app/start中的文件仅在运行相应环境时启动Laravel框架时执行。这意味着当环境等于app/start/local.php时运行local,并且当环境等于app/start/staging.php时运行staging。此外,每次运行app/start/global.php文件,并在每个工匠执行时运行app/start/artisan.php

从文档:http://laravel.com/docs/errors放置处理程序

App::error(function(Exception $exception)
{
    Log::error($exception);
});
app/start/artisan中为您的工匠专用异常处理程序