Yii 日志记录

Yii 日志记录

Yii提供了一个高度可定制和可扩展的框架。借助这个框架,您可以轻松地记录各种类型的消息。

要记录一条消息,您应该调用以下方法之一−

  • Yii::error() − 记录一个致命错误消息。

  • Yii::warning() − 记录一个警告消息。

  • Yii::info() − 记录一条带有一些有用信息的消息。

  • Yii::trace() − 记录一条消息以跟踪代码片段的运行情况。

上述方法在各个类别记录日志消息。它们共享以下函数签名−

function (message,category = 'application')

其中−

  • $message − 要记录的日志消息

  • $category − 日志消息的类别

一个简单而便利的命名方案是使用PHP的METHOD魔术常量。例如 −

Yii::info('this is a log message', __METHOD__);

日志目标是 yii\log\Target 类的一个实例。它通过类别筛选所有日志消息,并将它们导出到文件、数据库和/或电子邮件。

步骤1 - 您也可以注册多个日志目标,例如:

return [
   // the "log" component is loaded during bootstrapping time
   'bootstrap' => ['log'],
   'components' => [
      'log' => [
         'targets' => [
            [
               'class' => 'yii\log\DbTarget',
               'levels' => ['error', 'warning', 'trace', 'info'],
            ],
            [
               'class' => 'yii\log\EmailTarget',
               'levels' => ['error', 'warning'],
               'categories' => ['yii\db\*'],
               'message' => [
                  'from' => ['log@mydomain.com'],
                  'to' => ['admin@mydomain.com', 'developer@mydomain.com'],
                  'subject' => 'Application errors at mydomain.com',
               ],
            ],
         ],
      ],
   ],
];

在上面的代码中,注册了两个目标。第一个目标选择所有错误、警告、跟踪和信息消息,并将它们保存在数据库中。第二个目标将所有错误和警告消息发送到管理员的邮箱。

Yii提供了以下内置的日志目标:

  • yii\log\DbTarget - 将日志消息存储在数据库中。

  • yii\log\FileTarget - 将日志消息保存在文件中。

  • yii\log\EmailTarget - 将日志消息发送到预定义的电子邮件地址。

  • yii\log\SyslogTarget - 通过调用PHP函数syslog()将日志消息保存到syslog中。

默认情况下,日志消息的格式如下:

Timestamp [IP address][User ID][Session ID][Severity Level][Category] Message Text

步骤2 − 要自定义这个格式,您应该配置 yii\log\Target::$prefix 属性。例如。

[
   'class' => 'yii\log\FileTarget',
   'prefix' => function (message) {user = Yii::app->has('user', true) ? Yii::app->get('user') :
      'undefined user';
      userID =user ? user->getId(false) : 'anonym';
      return "[userID]";
   }
]

上面的代码片段配置了一个日志目标,以当前用户ID作为所有日志消息的前缀。

默认情况下,日志消息包括以下全局PHP变量的值:_GET,_POST,_SESSION,_COOKIE,_FILES和_SERVER。要修改此行为,您应该使用变量名配置yii\log\Target::$logVars属性,这些变量希望包含在内。

所有日志消息都由日志记录器对象维护在一个数组中。日志记录器对象将记录的消息刷新到日志目标中,每当数组累积一定数量的消息时(默认为1000次)。

步骤3 - 要自定义此数量,您应该调用 flushInterval属性

return [
   'bootstrap' => ['log'],
   'components' => [
      'log' => [
         'flushInterval' => 50, // default is 1000
         'targets' => [...],
      ],
   ],
];

即使日志记录器对象将日志消息刷新到日志目标,它们也不会立即导出。导出发生在日志目标积累了一定数量的消息时(默认值为1000)。

步骤4 - 要自定义此数字,您应该配置 exportInterval 属性。

[
   'class' => 'yii\log\FileTarget',
   'exportInterval' => 50, // default is 1000
]

步骤5 − 现在,以这种方式修改 config/web.php 文件。

<?php
   params = require(__DIR__ . '/params.php');config = [
      'id' => 'basic',
      'basePath' => dirname(__DIR__),
      'bootstrap' => ['log'],
      'components' => [
         'request' => [
            // !!! insert a secret key in the following (if it is empty) - this
               //is required by cookie validation
            'cookieValidationKey' => 'ymoaYrebZHa8gURuolioHGlK8fLXCKjO',
         ],
         'cache' => [
            'class' => 'yii\caching\FileCache',
         ],
         'user' => [
            'identityClass' => 'app\models\User',
            'enableAutoLogin' => true,
         ],
         'errorHandler' => [
            'errorAction' => 'site/error',
         ],
         'mailer' => [
            'class' => 'yii\swiftmailer\Mailer',
            // send all mails to a file by default. You have to set
            // 'useFileTransport' to false and configure a transport
            // for the mailer to send real emails.
            'useFileTransport' => true,
         ],
         'log' => [
            'flushInterval' => 1,
            'traceLevel' => YII_DEBUG ? 3 : 0,
            'targets' => [
               [
                  'class' => 'yii\log\FileTarget',
                  'exportInterval' => 1,
                  'logVars' => []
               ],
            ],
         ],
         'db' => require(__DIR__ . '/db.php'),
      ],
      'modules' => [
         'hello' => [
            'class' => 'app\modules\hello\Hello',
         ],
      ],
      'params' => params,
   ];
   if (YII_ENV_DEV) {
      // configuration adjustments for 'dev' environmentconfig['bootstrap'][] = 'debug';
      config['modules']['debug'] = [
         'class' => 'yii\debug\Module',
      ];config['bootstrap'][] = 'gii';
      config['modules']['gii'] = [
         'class' => 'yii\gii\Module',
      ];
   }
   returnconfig;
?>

在上面的代码中,我们定义了日志应用组件,将 flushIntervalexportInteval 属性设置为1,以便所有日志消息立即显示在日志文件中。我们还省略了日志目标的levels属性。这意味着所有类别(error,warning,info,trace)的日志消息都会出现在日志文件中。

步骤6 - 然后,在SiteController中创建一个名为actionLog()的函数。

public function actionLog() {
   Yii::trace('trace log message');
   Yii::info('info log message');
   Yii::warning('warning log message');
   Yii::error('error log message');
}

在上面的代码中,我们只是将四个不同类别的日志消息写入日志文件中。

步骤7 - 在浏览器的地址栏中输入 http://localhost:8080/index.php?r=site/log ,日志消息应出现在app/runtime/logs目录下的app.log文件中。

Yii 日志记录

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程