From b79e6938080635ffa3a0f13fe07f31023e690148 Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 7 Nov 2016 21:25:57 -0800 Subject: [PATCH] exec: Drop 'raw' text logging to DEBUG for security purposes Closes #347. --- plugins/exec.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/exec.py b/plugins/exec.py index 421d902..55e277c 100644 --- a/plugins/exec.py +++ b/plugins/exec.py @@ -62,8 +62,8 @@ def raw(irc, source, args): irc.reply('No text entered!') return - log.info('(%s) Sending raw text %r to IRC for %s', irc.name, args, - irc.getHostmask(source)) + log.debug('(%s) Sending raw text %r to IRC for %s', irc.name, args, + irc.getHostmask(source)) irc.send(args) irc.reply("Done.")