Yii2 log 模組,訊息日誌
Yii::trace():記錄一條訊息去跟蹤一段程式碼是怎樣執行的。這主要在開發的時候使用。
Yii::info():記錄一條訊息來傳達一些有用的資訊。
Yii::warning():記錄一個警告訊息用來指示一些已經發生的意外。
Yii::error():記錄一個致命的錯誤,這個錯誤應該儘快被檢查
1). 配置
//common/config/main.php 配置
'components' => [
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning','info','trace','profile'],
],
],
],
],
2).使用
Yii::trace("aaaaaaaaaaaaaaaaa", __METHOD__);
$trace = "這裡是 Yii::trace Yii::trace Yii::trace --------------------";
Yii::info("iiiiiiiiiiiiiiiiiiiii",__METHOD__);
$info = "這裡是 Yii::info Yii::info Yii::info -------------------------";
Yii::warning("wwwwwwwwwwwwwwwwwwwwww",__METHOD__);
$warning = "這裡是 Yii::warning Yii::warning Yii::warning----------------------";
Yii::error("eeeeeeeeeeeeeeeeeeeeeeeee",__METHOD__);
$error = "這裡是 Yii::error Yii::error Yii::error------------------";
3). 顯示
// runtime/log/app.log 在這裡應該可以找到類似的輸出
2018-10-25 07:54:48 [192.168.56.1][-][-][trace][frontend\controllers\SiteController::actionAbout] aaaaaaaaaaaaaaaaa
in /data/fei/yii2/frontend/controllers/SiteController.php:153
2018-10-25 07:54:48 [192.168.56.1][-][-][info][frontend\controllers\SiteController::actionAbout] iiiiiiiiiiiiiiiiiiiii
in /data/fei/yii2/frontend/controllers/SiteController.php:156
2018-10-25 07:54:48 [192.168.56.1][-][-][warning][frontend\controllers\SiteController::actionAbout] wwwwwwwwwwwwwwwwwwwwww
in /data/fei/yii2/frontend/controllers/SiteController.php:159
2018-10-25 07:54:48 [192.168.56.1][-][-][error][frontend\controllers\SiteController::actionAbout] eeeeeeeeeeeeeeeeeeeeeeeee
in /data/fei/yii2/frontend/controllers/SiteController.php:162
擴充套件:官方地址
相關文章
- python logging日誌模組以及多程式日誌Python
- 日誌記錄模組logging
- 推薦 Python 日誌模組 mongodb-logPythonMongoDB
- Yii2自定義日誌字首
- 一條日誌訊息的現代生活
- 日誌模組
- python的logging日誌模組(一)Python
- python的logging日誌模組(二)Python
- python(logging )日誌模組學習Python
- Log日誌
- Python:使用logging模組記錄日誌Python
- python之logging日誌模組詳解Python
- Python強大的日誌模組loggingPython
- 【Python】logging模組記錄程式日誌Python
- 『無為則無心』Python日誌 — 65、日誌模組logging的使用Python
- Weblogic日誌Web
- log 日誌原理
- 『無為則無心』Python日誌 — 67、logging日誌模組處理流程Python
- 日誌篇:模組日誌總體介紹
- 【python介面自動化】- logging日誌模組Python
- Python模組學習:logging 日誌記錄Python
- 開源高效能結構化日誌模組NanoLogNaN
- 『無為則無心』Python日誌 — 64、Python日誌模組logging介紹Python
- Python 日誌(Log)Python
- Logminer日誌挖掘
- 附加日誌(supplemental log)
- logminr 日誌挖掘
- Logstash日誌蒐集
- logmnr 日誌挖掘
- 日誌挖掘 log miner
- LOGMINER日誌分析
- Log 工具列印日誌
- After Effects報警 最後日誌訊息是: GPU Sniffer 10GPU
- MySQL 的日誌:binlogMySql
- rsyslog日誌總結
- Linux C日誌logLinux
- Rsyslog日誌系統
- MySQL重做日誌(redo log)MySql