laravel在終端中查看日誌的方法

來源:互聯網
上載者:User
這篇文章主要介紹了關於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!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.