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 1 year has passed since last update.

Docker環境でログデバッグするらなば、docker logsを使ったほうが楽

Last updated at Posted at 2023-04-06

結論

ログデバッグするならば以下のコマンドでデバッグするほうが楽

docker logs -f [コンテナ名]

よくやりがちなこと

コンテナにログインして以下のコマンドでログ監視します。

tail -f log/development.log

この場合、development.logに出力するために以下のようにログ出力を仕込みがちです。

Rails.logger.debug("ああああ")

dockerのほうがなぜいいのか

Rails.logger.debugと書くのがとにかくめんどくさい。
標準出力に出力するだけなら pp を使えば十分です。
docker logsは標準出力を表示してくれるので、ホスト側でdocker logsをすると、以下のようにログを仕込めばログデバッグできます。

pp "ああああ"

考えれば当たり前なんですけど、はっと思いつきました。

補足

VSCodeだったら右クリックでサクッとdocker logsできます。
Image from Gyazo

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?