diff options
-rw-r--r-- | lib/rbot/ircbot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb index b972e4e2..eb158c63 100644 --- a/lib/rbot/ircbot.rb +++ b/lib/rbot/ircbot.rb @@ -64,7 +64,7 @@ def rawlog(level, message=nil, who_pos=1) qmsg.push [level, l.chomp, who] who = ' ' * who.size } - if level >= Logger::Severity::ERROR and not $daemonize + if level >= Logger::Severity::WARN and not $daemonize qmsg.each do |l| $logger_stderr.add(*l) end |