From e289a63b148fc15d5f38317746d683cd9f699f23 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Mon, 22 Dec 2014 15:40:10 +0100 Subject: [PATCH] Google: calc: Remove leftover HTML dump debug code It spams the logs. Even worse, it uses log.info(). --- plugins/Google/plugin.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/Google/plugin.py b/plugins/Google/plugin.py index afd7137b0..42dee4121 100644 --- a/plugins/Google/plugin.py +++ b/plugins/Google/plugin.py @@ -320,7 +320,6 @@ class Google(callbacks.PluginRegexp): match = self._calcRe3.search(html) if not match: irc.reply("I could not find an output from Google Calc for: %s" % expr) - self.log.info("HTML: {0}".format(html)) return else: s = match.group(1)