diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-07-02 15:54:36 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-07-02 15:54:36 +0200 |
commit | 2fa82a4e7d10b13713d2a11e2bf19bdf81f9f72a (patch) | |
tree | f9cc377e841022646d369ad3aca7d74c992a3436 /data/rbot | |
parent | 6b1a398dde91137afe4910f4552a17207678dc08 (diff) |
rss plugin: comment out a couple of potentially oververbose debug lines
Diffstat (limited to 'data/rbot')
-rw-r--r-- | data/rbot/plugins/rss.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/rbot/plugins/rss.rb b/data/rbot/plugins/rss.rb index cbdb2a82..e5c2da11 100644 --- a/data/rbot/plugins/rss.rb +++ b/data/rbot/plugins/rss.rb @@ -941,13 +941,13 @@ class RSSFeedsPlugin < Plugin end def select_nonempty(*ar) - debug ar + # debug ar ar.each { |i| return i unless i.nil_or_empty? } return nil end def printFormattedRss(feed, item, opts=nil) - debug item + # debug item places = feed.watchers handle = feed.handle.empty? ? "" : "::#{feed.handle}:: " date = String.new |