Skip to content

Commit

Permalink
Comment out debug statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonjensen committed Nov 22, 2001
1 parent 3d77774 commit 4c41f35
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/Vend/DbSearch.pm
@@ -1,6 +1,6 @@
# Vend::DbSearch - Search indexes with Interchange
#
# $Id: DbSearch.pm,v 2.0.2.5 2001-11-22 03:49:58 jon Exp $
# $Id: DbSearch.pm,v 2.0.2.6 2001-11-22 03:51:08 jon Exp $
#
# Adapted for use with Interchange from Search::TextSearch
#
Expand All @@ -26,7 +26,7 @@ require Vend::Search;

@ISA = qw(Vend::Search);

$VERSION = substr(q$Revision: 2.0.2.5 $, 10);
$VERSION = substr(q$Revision: 2.0.2.6 $, 10);

use Search::Dict;
use strict;
Expand Down Expand Up @@ -253,7 +253,7 @@ sub search {
$@ and return $s->search_error("Return subroutine creation: $@");

if(! defined $f and defined $limit_sub) {
::logDebug("no f, limit, dbref=$dbref");
#::logDebug("no f, limit, dbref=$dbref");
local($_);
while ($_ = join "\t",
map { s/\t/ /g; $_ }
Expand All @@ -264,7 +264,7 @@ sub search {
}
}
elsif(defined $limit_sub) {
::logDebug("f and limit, dbref=$dbref");
#::logDebug("f and limit, dbref=$dbref");
local($_);
while ($_ = join "\t",
map { s/\t/ /g; $_ }
Expand All @@ -279,7 +279,7 @@ sub search {
return $s->search_error('No search definition');
}
else {
::logDebug("f and no limit, dbref=$dbref");
#::logDebug("f and no limit, dbref=$dbref");
local($_);
while ($_ = join "\t",
map { s/\t/ /g; $_ }
Expand Down

0 comments on commit 4c41f35

Please sign in to comment.