facebook twitter hatena line email

Php/laravel/laravel5/log

提供: 初心者エンジニアの簡易メモ
2018年2月21日 (水) 16:26時点におけるAdmin (トーク | 投稿記録)による版

移動: 案内検索

ログ出力

\Log::debug("hoge");
\Log::info("hoge");
\Log::notice("hoge");
\Log::warning("hoge");
\Log::error("hoge");
\Log::critical("hoge");
\Log::alert("hoge");
\Log::log("debug", "hoge");

ログ出力場所

tail -f storage/logs/laravel.log

実際のログ

production.DEBUG: hoge

ログローテーション

$ vi config/app.php
// 'log' => env('APP_LOG', 'single'),
'log' => env('APP_LOG', 'daily'),
'log_max_files' => 30, // defaultは5なので30ぐらいへ

参考:https://readouble.com/laravel/5.5/ja/errors.html