首頁  >  文章  >  php框架  >  yii2使用資料庫記錄錯誤訊息

yii2使用資料庫記錄錯誤訊息

王林
王林原創
2020-02-26 16:25:162554瀏覽

yii2使用資料庫記錄錯誤訊息

命令列建立錯誤日誌表

1、設定檔:console\config\main.php

'components' => [
    'log' => [
        'targets' => [
            [
                'class' => 'yii\log\FileTarget',
                'levels' => ['error', 'warning'],
            ],
            [
                'class' => 'yii\log\DbTarget',  //使用数据库记录日志
                'levels' => ['error', 'warning'],
            ]           
        ],
    ]
],

2、cd 到專案根目錄,在common模組配置好資料庫配置,執行命令列建立表格:

(推薦教學:yii框架

php yii migrate --migrationPath=@yii/log/migrations/

修改設定檔:backend\config\main .php

'components' => [
    ... ...
    'log' => [
        'traceLevel' => YII_DEBUG ? 3 : 0,
        'targets' => [
            [
                'class' => 'yii\log\FileTarget',
                'levels' => ['error', 'warning'],
            ],
            [
                'class' => 'yii\log\DbTarget',  //使用数据库记录日志
                'levels' => ['error', 'warning'],
            ]
        ],
    ],
    ... ...
]

更多程式相關內容,請追蹤php中文網程式設計入門欄位!

以上是yii2使用資料庫記錄錯誤訊息的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn