summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2021-05-29 17:20:50 +0200
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2021-05-29 18:47:03 +0200
commit0368e8c09385a6c49e0d59cd6162675057e5b339 (patch)
treee24a358fd2f499e1230001970800c4736295bc46 /bin
parentfcbe2a81573046c4381d72c1b294002cbd68b47c (diff)
fix: preserve loglevels across options and files
Diffstat (limited to 'bin')
-rwxr-xr-xbin/rbot2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rbot b/bin/rbot
index 86f907cf..82ee9c9a 100755
--- a/bin/rbot
+++ b/bin/rbot
@@ -114,7 +114,7 @@ end
if(bot = Irc::Bot.new(ARGV.shift, :argv => orig_opts))
# setup logger based on command line arguments
loglevel = $opts['loglevel'] ? $opts['loglevel'].to_i : nil
- loglevel = $opts['debug'] ? 0 : nil
+ loglevel = $opts['debug'] ? 0 : loglevel
if loglevel
Irc::Bot::LoggerManager.instance.set_level(loglevel)
end