diff options
author | Peter Palfrader <peter@palfrader.org> | 2003-02-16 03:38:09 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2003-02-16 03:38:09 +0000 |
commit | a88423686da4cac657f06e3e138f22416d951325 (patch) | |
tree | ae333a743edc9d1c590a851fccb432ef5791e7c1 /Echolot/Conf.pm | |
parent | 1e423e4b65f9e1f8dd3bb70945020bfb877ec0f0 (diff) |
Minor fixes re chain pinging
Diffstat (limited to 'Echolot/Conf.pm')
-rw-r--r-- | Echolot/Conf.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Echolot/Conf.pm b/Echolot/Conf.pm index 82ceff0..d5b9505 100644 --- a/Echolot/Conf.pm +++ b/Echolot/Conf.pm @@ -1,7 +1,7 @@ package Echolot::Conf; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Conf.pm,v 1.36 2003/01/14 06:56:22 weasel Exp $ +# $Id: Conf.pm,v 1.37 2003/02/16 03:38:09 weasel Exp $ # =pod @@ -68,7 +68,7 @@ sub send_requests($;$) { $which eq 'all' || (($which eq '') && ($this_call_id == (Echolot::Tools::makeShortNumHash($address.$type.$session_id) % $send_every_n_calls)))); - Echolot::Log::info("Sending $type request to ".$address."."); + Echolot::Log::debug("Sending $type request to ".$address."."); my $source_text = Echolot::Config::get()->{'remailerxxxtext'}; my $template = HTML::Template->new( @@ -97,7 +97,7 @@ sub check_resurrection() { next unless ($remailer->{'status'} eq 'ttl timeout'); next unless ($remailer->{'fetch'}); next unless ($remailer->{'resurrection_ttl'}); - Echolot::Log::info("Sending request to ".$remailer->{'address'}." to check for resurrection."); + Echolot::Log::debug("Sending request to ".$remailer->{'address'}." to check for resurrection."); for my $type (qw{conf key help stats adminkey}) { Echolot::Tools::send_message( 'To' => $remailer->{'address'}, |