summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-11-30 19:46:42 -0600
committerJesse Luehrs <doy@tozt.net>2009-11-30 19:46:42 -0600
commit3759f6d531e0439d1f3673352943f79fa8578d3e (patch)
tree840d119acbfbed0ec87bfe3555684bf331f252b9
parentb64a7fc1d7c4c64db64a859812c10539f39d281d (diff)
downloadcrawlbot-3759f6d531e0439d1f3673352943f79fa8578d3e.tar.gz
crawlbot-3759f6d531e0439d1f3673352943f79fa8578d3e.zip
move debugging output back up to the top level
-rw-r--r--lib/Crawl/Bot.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Crawl/Bot.pm b/lib/Crawl/Bot.pm
index 7d34403..1f74762 100644
--- a/lib/Crawl/Bot.pm
+++ b/lib/Crawl/Bot.pm
@@ -51,7 +51,9 @@ before say => sub {
sub tick {
my $self = shift;
+ warn "Checking for updates...";
$_->tick for @{ $self->plugins };
+ warn "Done";
return $self->update_time;
}