facebook twitter hatena line email

「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");...」)
 
行1: 行1:
 
==ログ出力==
 
==ログ出力==
\Log::debug("hoge");
+
\Log::debug("hoge");
\Log::info("hoge");
+
\Log::info("hoge");
\Log::notice("hoge");
+
\Log::notice("hoge");
\Log::warning("hoge");
+
\Log::warning("hoge");
\Log::error("hoge");
+
\Log::error("hoge");
\Log::critical("hoge");
+
\Log::critical("hoge");
\Log::alert("hoge");
+
\Log::alert("hoge");
  
 
\Log::log("debug", "hoge");
 
\Log::log("debug", "hoge");

2018年2月6日 (火) 16:35時点における版

ログ出力

\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