這篇文章主要介紹了關於laravel在終端中查看日誌的方法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
php artisan tail --path=/Users/henryj/workspace_php/makerlab/app/storage/logs/laravel-2015-04-22.log 在mac book終端中啟動並執行指令
使用 `php artisan tail` 來即時查看 Laravel 應用程式的 Log
說明
php artisan tail
命令可用來查看即時的程式運行 log, 在 debug 模式關閉的情況下 ( 如: 生產環境 ), 尤其有用.
使用
開發使用
預設情況下 tail 只是針對本地的代碼
php artisan tail
開發的時候, 還可以開啟 SQL 查詢語句的 LOG, 配合 php artisan tail
一起使用, 對 SQL 進行監控和調優.
在 app/filters.php
裡面加上
Event::listen('illuminate.query', function($query, $bindings, $time, $name){$data = compact('bindings', 'time', 'name'); // Format binding data for sql insertionforeach ($bindings as $i => $binding){if ($binding instanceof \DateTime){$bindings[$i] = $binding->format('\'Y-m-d H:i:s\'');}else if (is_string($binding)){$bindings[$i] = "'$binding'";}} // Insert bindings into query$query = str_replace(array('%', '?'), array('%%', '%s'), $query);$query = vsprintf($query, $bindings);Log::info($query, $data);});
生產環境下的 Log
接下來我們做些配置, 查看生產環境下的 Log .
修改app/config/remote.php
檔案
'connections' => array('production' => array('host' => '117.111.111.111', // 'username' => 'root','password' => '','key' => '/Users/username/.ssh/id_rsa','keyphrase' => '','root' => '/var/webroot',),),
伺服器驗證可以選擇 使用者名稱密碼 方式, 也可以設定 Key.
配置完成後調用:
php artisan tail production --path=/var/www/omapi/app/storage/logs/fpm-fcgi-2014-12-12.log --env=local
就可以即時查看 Log 輸出了:
查看支援的參數
php artisan help tail
以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!