Php/laravel/laravel5/log
提供: 初心者エンジニアの簡易メモ
ログ出力
\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