# HG changeset patch # User Matthew Wild # Date 1254518179 -3600 # Node ID ea59a8d98b034998e01d366a8e1210a6ee30acf1 # Parent 72bcc0475e2ffe56d5b4471ed01d7c0dd7beacf0 mod_pastebin: Comment some debug logging on every message diff -r 72bcc0475e2f -r ea59a8d98b03 mod_pastebin/mod_pastebin.lua --- a/mod_pastebin/mod_pastebin.lua Fri Oct 02 22:15:14 2009 +0100 +++ b/mod_pastebin/mod_pastebin.lua Fri Oct 02 22:16:19 2009 +0100 @@ -54,7 +54,7 @@ if not body then return; end body = body:get_text(); - module:log("debug", "Body(%s) length: %d", type(body), #(body or "")); + --module:log("debug", "Body(%s) length: %d", type(body), #(body or "")); if body and #body > length_threshold then local url = pastebin_message(body);