Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct some misleading debugging output
  • Loading branch information
jonjensen committed Sep 18, 2018
1 parent 091cce4 commit cedd541
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Vend/Interpolate.pm
Expand Up @@ -4252,8 +4252,8 @@ my $once = 0;
last unless defined $row;
$code = $row->[0];

#::logDebug("Doing $code substitution, count $count++");
#::logDebug("Doing '" . substr($code, 0, index($code, "\n") + 1) . "' substitution, count $count++");
#::logDebug("Doing $code substitution, count $count");
#::logDebug("Doing '" . substr($code, 0, index($code, "\n") + 1) . "' substitution, count $count");

$run = $text;
$run =~ s#$B$QR{_alternate}$E$QR{'/_alternate'}#
Expand Down Expand Up @@ -4439,7 +4439,7 @@ sub iterate_hash_list {
$code = $item->{$code_field} || $item->{code};
$code = '' unless defined $code;

#::logDebug("Doing $code (variant $item->{code}) substitution, count $count++");
#::logDebug("Doing $code (variant $item->{code}) substitution, count $count");

$run = $text;
$run =~ s#$B$QR{_alternate}$E$QR{'/_alternate'}#
Expand Down

0 comments on commit cedd541

Please sign in to comment.