LoginSignup
0
0

More than 1 year has passed since last update.

ロガーもどきを作る時のコツ

Last updated at Posted at 2022-04-09
sample.rb
def put_log(message)
  puts "#{`hostname`.chomp}:#{caller.first}:#{message}"
end

def method_a
  put_log('メッセージ')
end

method_a

実行結果

LAPTOP-5EMLK46H:sample.rb:6:in `method_a':メッセージ

LAPTOP-5EMLK46H は私のノートPCのマシン名。

どのマシンでのどのプログラムのどのメソッドでの出来事なのかというのが大事。

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