0

我需要在我的业务逻辑中包含 try-catch 块。因此,我可以使用更多上下文来记录错误。

try {
    // business logic
} catch(Exception $e) {
    // Log message like 'Could not create user with email something@domain.com'
    $msgForUser = CustomErrorHandler::handleError($e, $data->email);

    // Display message like 'Your user was not created bla bla bla'
    return $msgForUser;
}

我意识到我可以在App::errorin 中设置自定义错误处理start/global.php,但是这消除了包含特定于该函数的变量和消息的机会。

问题是现在我的 try 块捕获了开发中的错误。而且我还想在开发模式下获得 Whoops 异常调试器。这可能吗?

4

1 回答 1

1

您正在与这一流程作斗争,Laravel 似乎偏向于使用异常来报告实际错误(与像您一样对应用程序控制流使用异常)。

Laravel 中没有任何东西(我知道)可以让你这样做。我会把这个逻辑放在你的CustomErrorHandler::handleError方法中

class CustomerErrorHandler
{
    //assuming `CustomerErrorHandler::handleError` is a static method
    //call.  If its a facade define an instance method in your service
    //class.
    static public function handleError($e)
    {
        if(...is environment where I want to see whoops...)
        {
            throw $e;
        }

        //if we're still here it's production
        //so do our logging and create a 
        //$msgForUser string

        //...

        return $msgForUser;
    }
}
于 2014-10-05T21:05:18.843 回答