From 0df47c3894cba889db308081b98fc1f513ba6963 Mon Sep 17 00:00:00 2001 From: Matthias Hecker Date: Tue, 26 Nov 2013 16:13:30 +0000 Subject: [PATCH] Revert "always print FATAL and ERROR logmessages to STDERR" This reverts commit c4d629ad86aae3b8bb4669650df57875252bea92. --- lib/rbot/ircbot.rb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb index 108d0b1d..a1713c2d 100644 --- a/lib/rbot/ircbot.rb +++ b/lib/rbot/ircbot.rb @@ -66,10 +66,6 @@ def rawlog(level, message=nil, who_pos=1) qmsg.push [level, l.chomp, who] who = ' ' * who.size } - # Also output (fatal) errors to STDERR: - if level == Logger::Severity::ERROR or level == Logger::Severity::FATAL - $stderr.puts str - end $log_queue.push qmsg end -- 2.32.0.93.g670b81a890