Table of Contents
1、简介
2、配置
3、异常处理器
4、HTTP异常
5、日志
Home Backend Development PHP Tutorial [ Laravel 5.2 文档 ] 服务 -- 错误&日志

[ Laravel 5.2 文档 ] 服务 -- 错误&日志

Jun 23, 2016 pm 01:17 PM

1、简介

Laravel默认已经为我们配置好了错误和异常处理,此外,Laravel还集成了 Monolog日志库以便提供多种功能强大的日志处理器。

2、配置

错误详情显示

配置文件 config/app.php中的 debug配置选项控制浏览器显示的错误详情数量。默认情况下,该配置选项被设置在 .env文件中的环境变量 APP_DEBUG。

对本地开发而言,你应该设置环境变量 APP_DEBUG值为 true。在生产环境,该值应该被设置为 false。

日志模式

Laravel支持日志方法 single,  daily,  syslog和  errorlog。例如,如果你想要日志文件按日生成而不是生成单个文件,应该在配置文件 config/app.php中设置 log值如下:

'log' => 'daily'
Copy after login

自定义Monolog配置

如果你想要在应用中完全控制Monolog的配置,可以使用应用的 configureMonologUsing方法。你应该在 bootstrap/app.php文件返回 $app变量之前调用该方法:

$app->configureMonologUsing(function($monolog) {    $monolog->pushHandler(...);});return $app;
Copy after login

3、异常处理器

所有异常都由类 App\Exceptions\Handler处理,该类包含两个方法: report和 render。下面我们详细阐述这两个方法。

3.1 report方法

report方法用于记录异常并将其发送给外部服务如 Bugsnag。默认情况下, report方法只是将异常传递给异常被记录的基类,你可以随心所欲的记录异常。

例如,如果你需要以不同方式报告不同类型的异常,可使用PHP的 instanceof比较操作符:

/** * 报告或记录异常 * * This is a great spot to send exceptions to Sentry, Bugsnag, etc. * * @param  \Exception  $e * @return void */public function report(Exception $e){    if ($e instanceof CustomException) {        //    }    return parent::report($e);}
Copy after login

通过类型忽略异常

异常处理器的 $dontReport属性包含一个不会被记录的异常类型数组,默认情况下, 404错误异常不会被写到日志文件,如果需要的话你可以添加其他异常类型到这个数组。

3.2 render方法

render方法负责将给定异常转化为发送给浏览器的HTTP响应,默认情况下,异常被传递给为你生成响应的基类。然而,你可以随心所欲地检查异常类型或者返回自定义响应:

/** * 将异常渲染到HTTP响应中 * * @param  \Illuminate\Http\Request  $request * @param  \Exception  $e * @return \Illuminate\Http\Response */public function render($request, Exception $e){    if ($e instanceof CustomException) {        return response()->view('errors.custom', [], 500);    }    return parent::render($request, $e);}
Copy after login

4、HTTP异常

有些异常描述来自服务器的HTTP错误码,例如,这可能是一个“页面未找到”错误( 404),“认证失败错误”( 401)亦或是程序出错造成的 500错误,为了在应用中生成这样的响应,使用如下方法:

abort(404);
Copy after login

abort方法会立即引发一个会被异常处理器渲染的异常,此外,你还可以像这样提供响应描述:

abort(403, 'Unauthorized action.');
Copy after login

该方法可在请求生命周期的任何时间点使用。

自定义HTTP错误页面

Laravel使得返回多种HTTP状态码的错误页面变得简单,例如,如果你想要自定义 404错误页面,创建一个 resources/views/errors/404.blade.php文件,给文件将会渲染程序生成的所有 404错误。

改目录下的视图命名应该和相应的HTTP状态码相匹配。

5、日志

Laravel日志工具基于强大的Monolog库,默认情况下,Laravel被配置为在 storage/logs目录下每日为应用生成日志文件,你可以使用 Log门面编写日志信息到日志中:

<?phpnamespace App\Http\Controllers;use Log;use App\User;use App\Http\Controllers\Controller;class UserController extends Controller{    /**     * 显示指定用户的属性     *     * @param  int  $id     * @return Response     */    public function showProfile($id)    {        Log::info('Showing user profile for user: '.$id);        return view('user.profile', ['user' => User::findOrFail($id)]);    }}
Copy after login

该日志记录器提供了 RFC 5424中定义的八种日志级别: emergency, alert, critical, error, warning, notice, infodebug

Log::emergency($error);Log::alert($error);Log::critical($error);Log::error($error);Log::warning($error);Log::notice($error);Log::info($error);Log::debug($error);
Copy after login

上下文信息

上下文数据数组也会被传递给日志方法。上下文数据将会和日志消息一起被格式化和显示:

Log::info('User failed to login.', ['id' => $user->id]);
Copy after login

访问底层Monolog实例

Monolog有多个可用于日志的处理器,如果需要的话,你可以访问底层Monolog实例:

$monolog = Log::getMonolog();
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

11 Best PHP URL Shortener Scripts (Free and Premium) 11 Best PHP URL Shortener Scripts (Free and Premium) Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Introduction to the Instagram API Introduction to the Instagram API Mar 02, 2025 am 09:32 AM

Following its high-profile acquisition by Facebook in 2012, Instagram adopted two sets of APIs for third-party use. These are the Instagram Graph API and the Instagram Basic Display API.As a developer building an app that requires information from a

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation Survey Announcement of 2025 PHP Situation Survey Mar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

See all articles