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.

Rails Logger基本

Posted at

実装方法

出力させる方法

## 出力させる方法
Logger.new("出力先", '出力内容')

ex Logger.new('/log/development', "出力内容")

## こんな書き方もある様子

logger = Logger.new('/log/development')
logger.debug '出力させたい内容'

出力させるメソッドによってログに出された時の、
ラベル?が異なる。

このラベルを変化させる事によって、検知ツールの設定を変更する気がする(インフラ環境はよくわからない)

## logger.debug '出力させたい内容'の場合

D, [2020-10-04T08:41:46.184230 #6] DEBUG -- : 出力されるかな

##logger.info '出力させたい内容'

I, [2020-10-04T08:43:51.453817 #6]  INFO -- : 出力されるかな

出力先

logディレクトリ配下

Loggerの第一引数の場所が、存在しない場合は新規で作成される

Logger.new('/log/hello.log', "hello")
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?