0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Laravel Logを出力してみる 簡易版

Last updated at Posted at 2020-07-01

目的

実施環境

  • MacのローカルにLaravelの環境を構築して実施する。環境構築手順の記事はリンクを後述する。
  • ハードウェア環境
項目 情報
OS macOS Catalina(10.15.5)
ハードウェア MacBook Pro (13-inch, 2020, Four Thunderbolt 3 ports)
プロセッサ 2 GHz クアッドコアIntel Core i5
メモリ 32 GB 3733 MHz LPDDR4
グラフィックス Intel Iris Plus Graphics 1536 MB
  • ソフトウェア環境
項目 情報 備考
PHP バージョン 7.4.3 Homwbrewを用いて導入
Laravel バージョン 7.0.8 commposerを用いてこちらの方法で導入→Mac Laravelの環境構築を行う
MySQLバージョン 8.0.19 for osx10.13 on x86_64 Homwbrewを用いてこちらの方法で導入→Mac HomebrewでMySQLをインストールする

詳細

  1. ログを出力したいコントローラのアクション内に下記の記載を行う。

    //use宣言として下記を追記
    use Illuminate\Support\Facades\Log;
    
    //コントローラのアクション内に下記を追記
    Log::debug('test');
    
  2. ブラウザから追記箇所が実行されるように操作を行う。

  3. アプリ名ディレクトリ/storage/logs/laravel.logに下記の様な一行が追記される。

    アプリ名ディレクトリ/storage/logs/laravel.log
    [YYYY-MM-DD HH:MM:SS] local.DEBUG: test 
    
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?