From: Don Armstrong Date: Sat, 27 May 2006 08:34:51 +0000 (-0700) Subject: remove debbugging print from Debbugs::Common X-Git-Tag: release/2.6.0~585^2^2~103^2~6 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a751319013347540e932c5d11ca023179a8d8ff0;p=debbugs.git remove debbugging print from Debbugs::Common --- diff --git a/Debbugs/Common.pm b/Debbugs/Common.pm index cb788e32..fd201688 100644 --- a/Debbugs/Common.pm +++ b/Debbugs/Common.pm @@ -177,7 +177,6 @@ sub getbuglocation { my ($bugnum, $ext) = @_; my $archdir = get_hashname($bugnum); return 'archive' if -r getlocationpath('archive')."/$archdir/$bugnum.$ext"; - print STDERR getlocationpath('db-h')."/$archdir/$bugnum.$ext\n"; return 'db-h' if -r getlocationpath('db-h')."/$archdir/$bugnum.$ext"; return 'db' if -r getlocationpath('db')."/$bugnum.$ext"; return undef;