From 39c7880d82b5db2163e5c5869b622daceb3477ef Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Sun, 30 Jul 2006 07:56:24 +0000 Subject: [PATCH] Revert one of the cleanups from [309] that totally hid the information on the origin of logged messages: it should only be blanked out on subsequent lines of multiline messages --- lib/rbot/ircbot.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb index 1f11e85f..6226e55e 100644 --- a/lib/rbot/ircbot.rb +++ b/lib/rbot/ircbot.rb @@ -17,12 +17,15 @@ def rawlog(level, message=nil, who_pos=1) call_stack = caller if call_stack.length > who_pos who = call_stack[who_pos].sub(%r{(?:.+)/([^/]+):(\d+)(:in .*)?}) { "#{$1}:#{$2}#{$3}" } - who.gsub!(/./," ") else who = "(unknown)" end + # Output each line. To distinguish between separate messages and multi-line + # messages originating at the same time, we blank #{who} after the first message + # is output. message.to_s.each_line { |l| $logger.add(level, l.chomp, who) + who.gsub!(/./," ") } end -- 2.39.2