summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-02-15 03:04:00 -0600
committerJesse Luehrs <doy@tozt.net>2010-02-15 03:04:00 -0600
commitc99d9f552a431e64ba98583d0fcbe8fbc298a2dc (patch)
tree47146c5f3c352484028bd4bb7c56ffc1ebca7768
parentf28465652f05e585cbb3adda87176436b8384e79 (diff)
downloadcrawlbot-c99d9f552a431e64ba98583d0fcbe8fbc298a2dc.tar.gz
crawlbot-c99d9f552a431e64ba98583d0fcbe8fbc298a2dc.zip
remove a debugging warn
-rw-r--r--lib/Crawl/Bot/Plugin/Wiki.pm1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Crawl/Bot/Plugin/Wiki.pm b/lib/Crawl/Bot/Plugin/Wiki.pm
index 66394c2..c08c019 100644
--- a/lib/Crawl/Bot/Plugin/Wiki.pm
+++ b/lib/Crawl/Bot/Plugin/Wiki.pm
@@ -31,7 +31,6 @@ sub tick {
return unless $last_checked;
my $xmlrpc = XML::RPC->new($self->xmlrpc_location);
- warn "Getting recent wiki changes...";
my $changes = try { $xmlrpc->call('wiki.getRecentChanges', $last_checked) } catch { warn $_ };
# ->call returns a hashref with error info on failure
return unless ref($changes) eq 'ARRAY';