Yii2保存登录到数据库

时间:2019-01-08 15:09:40

标签: yii2 yii2-advanced-app

我对使用Yii2的日志有一些问题。 我以这种方式设置日志目标:

'log' => [
    'traceLevel' => YII_DEBUG ? 3 : 0,
    'flushInterval' => 1,//test
    'targets' => [
        [
          'class' => 'common\components\SaDbTarget',
          'levels' => ['error', 'warning','trace','info'],
          'exportInterval' => 1,//test
          //'categories' => ['application'],
          /*'except' => [
                'yii\db\*',
            ],*/
         ],
       ],
  ],

我创建了扩展DbTarget类的SaDbTarget,并且此方法运行良好,因为我在表中找到了一些日志。 之后,在控制器中,我尝试以这种方式设置日志

public function actionIndex(){
    $searchModel = new CategorySearch();
    $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
    Yii::trace('trace log', __METHOD__);
    Yii::warning('warning log');
    // here is the rest of the code
}

我可以看到这2条日志登录到调试工具栏,但没有在我的数据库表中。 根据文档

  

要使每个日志消息立即出现在日志目标中,请   应该将flushInterval和exportInterval都设置为1

我尝试设置此值,但仍然无法正常工作。

我不知道我在做什么错。

更新 这是我的SaDbTarget

namespace common\components;

use Yii;
use yii\log\DbTarget;
use yii\log\Logger;

class SaDbTarget extends DbTarget{ 

    //set custom table db for saving log
    public $logTable = 'authlog';

    //overwrite export();
    public function export(){

        $tableName = $this->db->quoteTableName($this->logTable);
        $sql = "INSERT INTO $tableName ([[authlog_login]], [[authlog_ip]], [[authlog_area]], [[authlog_act]], [[authlog_time]], [[authlog_data]])
            VALUES (:login, :ip, :area, :act, :time, :data )";

        $command = $this->db->createCommand($sql);

        //Get username
        $user=Yii::$app->user->getId();

        //Get user ip address
        $ip = Yii::$app->request->getUserIP();

        //Get area/controller
        $controller=Yii::$app->controller->uniqueId;

        //Get action
        $event= Yii::$app->controller->module->requestedAction->id;

        //Set timezone
        $time =  Yii::$app->formatter->asDate('now', 'php:Y-m-d H:i:s'); 

        //Set Data
        $data = $this->messages[0];

        $command->bindValues([
            ':login' => $user,
            ':ip' => $ip,
            ':area' => $controller,        
            ':act' => $event,
            ':time' => $time,
            ':data' => $data,
        ])->execute();
    }

0 个答案:

没有答案
相关问题