Laravel日志用法详解

5年以前  |  阅读数:471 次  |  编程语言:PHP 

本文实例讲述了Laravel日志用法。分享给大家供大家参考,具体如下:

这里使用的Laravel版本仍是5.2

日志是非常重要的。本地开发可以开启调试模式,但是上线的项目查看日志是非常简洁有效的调试手段。Laravel集成了Monolog日志库以便提供多种功能强大的日志处理器。

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


    'log' => 'daily'

系统默认配置为single


    #config/app.php:111
    'log' => env('APP_LOG', 'single'),

下面我们看下Laravel是如何配置日志的。


    #vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:36
    protected $bootstrappers = [
        'Illuminate\Foundation\Bootstrap\DetectEnvironment',
        'Illuminate\Foundation\Bootstrap\LoadConfiguration',
        'Illuminate\Foundation\Bootstrap\ConfigureLogging',
        'Illuminate\Foundation\Bootstrap\HandleExceptions',
        'Illuminate\Foundation\Bootstrap\RegisterFacades',
        'Illuminate\Foundation\Bootstrap\RegisterProviders',
        'Illuminate\Foundation\Bootstrap\BootProviders',
    ];
    <?php
    namespace Illuminate\Foundation\Bootstrap;
    use Illuminate\Log\Writer;
    use Monolog\Logger as Monolog;
    use Illuminate\Contracts\Foundation\Application;
    class ConfigureLogging
    {
    /**
     * Bootstrap the given application.
     *
     * @param \Illuminate\Contracts\Foundation\Application $app
     * @return void
     */
    public function bootstrap(Application $app)
    {
      $log = $this->registerLogger($app);
      // If a custom Monolog configurator has been registered for the application
      // we will call that, passing Monolog along. Otherwise, we will grab the
      // the configurations for the log system and use it for configuration.
      if ($app->hasMonologConfigurator()) {
        call_user_func(
          $app->getMonologConfigurator(), $log->getMonolog()
        );
      } else {
        $this->configureHandlers($app, $log);
      }
    }

如果自定义Monolog配置,走if条件,默认走else


    protected function configureHandlers(Application $app, Writer $log)
    {
        $method = 'configure'.ucfirst($app['config']['app.log']).'Handler';
        $this->{$method}($app, $log);
    }
    /**
    * Configure the Monolog handlers for the application.
    *
    * @param \Illuminate\Contracts\Foundation\Application $app
    * @param \Illuminate\Log\Writer $log
    * @return void
    */
    protected function configureSingleHandler(Application $app, Writer $log)
    {
         $log->useFiles(
           $app->storagePath().'/logs/laravel.log', #存储文件
           $app->make('config')->get('app.log_level', 'debug') #存储级别
         );
    }

这里useFiles方法是注册signle文件日志处理程序,并设置存储文件以及存储的级别。

下面是初始化日志时的4种日志处理注册方式。


    public function useFiles($path, $level = 'debug') #单一文件
    public function useDailyFiles($path, $days = 0, $level = 'debug') #每日生成
    public function useSyslog($name = 'laravel', $level = 'debug') #系统日志的方式
    public function useErrorLog($level = 'debug', $messageType = ErrorLogHandler::OPERATING_SYSTEM) #等同于php的error_log方式

日志初始化信息基本上就是上面这些。

你可以使用Log门面编写日志信息到日志中:

八种日志级别:emergency, alert, critical, error,warning, notice, info 和 debug。


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

更多关于Laravel相关内容感兴趣的读者可查看本站专题:《Laravel框架入门与进阶教程》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php日期与时间用法总结》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助。

 相关文章:
PHP分页显示制作详细讲解
SSH 登录失败:Host key verification failed
获取IMSI
将二进制数据转为16进制以便显示
获取IMEI
文件下载
贪吃蛇
双位运算符
PHP自定义函数获取搜索引擎来源关键字的方法
Java生成UUID
发送邮件
年的日历图
提取后缀名
在Zeus Web Server中安装PHP语言支持
让你成为最历害的git提交人
Yii2汉字转拼音类的实例代码
再谈PHP中单双引号的区别详解
指定应用ID以获取对应的应用名称
Python 2与Python 3版本和编码的对比
php封装的page分页类完整实例