1
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でリアルタイムのログを流すコマンド(ログモードdaily版)

Last updated at Posted at 2021-03-20

#Laravelのログをリアルタイムで流す。
毎回ログフォルダまでcdしてからtail -f していたが、移動するのが面倒臭いのでコマンドを考えました。

Laravelプロジェクトのルートフォルダで以下のコマンドを流す。

tail -f ./storage/logs/log-$(date "+%Y-%m-%d").log

アプリケーションルートにでも.shファイル作って上のコマンド貼り付けておいとくと便利です。

Makefileを使う

cd {project_root や docker-compose.ymlのあるディレクトリなど}
touch Makefile
vim Makefile

以下を貼り付け 2行目の頭のスペースはタブ一つ。

log-error:
	tail -f backend/storage/logs/error/log-$(shell date "+%Y-%m-%d").log

使用

cd {project_root や docker-compose.ymlのあるディレクトリなど}
make log-error
1
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
1
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?