From 2ba09b661c398b43d5a5c355f5d5762d8f461466 Mon Sep 17 00:00:00 2001 From: djfiander Date: Wed, 8 Jul 2009 21:40:00 +0000 Subject: [PATCH] Comment out some debugging statements I checked in by accident. git-svn-id: svn://svn.open-ils.org/ILS/trunk@13539 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/Utils/MFHD/Caption.pm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Open-ILS/src/perlmods/OpenILS/Utils/MFHD/Caption.pm b/Open-ILS/src/perlmods/OpenILS/Utils/MFHD/Caption.pm index f47591aa53..c88ebd52f5 100755 --- a/Open-ILS/src/perlmods/OpenILS/Utils/MFHD/Caption.pm +++ b/Open-ILS/src/perlmods/OpenILS/Utils/MFHD/Caption.pm @@ -322,9 +322,9 @@ sub calendar_increment { ($month, $day) = unpack("a2a2", $change); } - printf("# calendar_increment('%s', '%s'): change on '%s/%s'\n", - join('/', @{$cur}), join('/', @{$new}), - $month, defined($day) ? $day : 'UNDEF'); +# printf("# calendar_increment('%s', '%s'): change on '%s/%s'\n", +# join('/', @{$cur}), join('/', @{$new}), +# $month, defined($day) ? $day : 'UNDEF'); if ($cur->[0] == $new->[0]) { # Same year, so a 'simple' month/day comparison will be fine @@ -388,7 +388,7 @@ sub next_date { } foreach my $pat (@pats) { - printf("# next_date: generating with pattern '%s'\n", $pat); +# printf("# next_date: generating with pattern '%s'\n", $pat); my @candidate = $genfunc->($pat, @cur); while ($self->is_omitted(@candidate)) { @@ -397,15 +397,15 @@ sub next_date { @candidate = $genfunc->($pat, @candidate); } - printf("# testing new candidate '%s' against '%s'\n", - join('/', @candidate), join('/', @new)); +# printf("# testing new candidate '%s' against '%s'\n", +# join('/', @candidate), join('/', @new)); if (!defined($new[0]) || !on_or_after(\@candidate, \@new)) { # first time through the loop # or @candidate is before @new => @candidate is the next # issue. @new = @candidate; - printf("# selecting candidate date '%s'\n", join('/', @new)); +# printf("# selecting candidate date '%s'\n", join('/', @new)); } } } -- 2.11.0