diff options
author | Peter Palfrader <peter@palfrader.org> | 2003-02-16 14:11:02 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2003-02-16 14:11:02 +0000 |
commit | 4c95e8493bf441418ed198156f5356cf3d923ce3 (patch) | |
tree | 84f3b904fff0be49921a81674b0eb68c380036f0 /Echolot/Stats.pm | |
parent | 4b8d6c32247cd50e3aa56f0cae54a34f06fcd6b6 (diff) |
Just extend (commented-out) debugging prints
Diffstat (limited to 'Echolot/Stats.pm')
-rw-r--r-- | Echolot/Stats.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Echolot/Stats.pm b/Echolot/Stats.pm index 84bcff3..888bbac 100644 --- a/Echolot/Stats.pm +++ b/Echolot/Stats.pm @@ -1,7 +1,7 @@ package Echolot::Stats; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Stats.pm,v 1.44 2003/02/16 09:16:23 weasel Exp $ +# $Id: Stats.pm,v 1.45 2003/02/16 14:11:02 weasel Exp $ # =pod @@ -514,7 +514,7 @@ sub find_broken_chains($$$) { my $theoretical_lat = $lat1 + $lat2; $theoretical_lat = 0 unless defined $theoretical_lat; my $latency = time() - $ping->{'sent'}; - # print ("lat helps $latency $theoretical_lat\n"), + # print ("lat helps $latency < ".int($theoretical_lat * Echolot::Config::get()->{'chainping_grace'})." $addr1 $addr2\n"), next if ($latency < $theoretical_lat * Echolot::Config::get()->{'chainping_grace'}); }; |