[open-ils-commits] r13711 - branches/rel_1_6_0/Open-ILS/src/perlmods/OpenILS/Application/Circ (erickson)
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Jul 23 10:59:50 EDT 2009
Author: erickson
Date: 2009-07-23 10:59:47 -0400 (Thu, 23 Jul 2009)
New Revision: 13711
Modified:
branches/rel_1_6_0/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm
Log:
patch from Ben Ostrowsky to fix log entry typos: ciculator -> circulator
Modified: branches/rel_1_6_0/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm
===================================================================
--- branches/rel_1_6_0/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm 2009-07-23 14:59:28 UTC (rev 13710)
+++ branches/rel_1_6_0/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm 2009-07-23 14:59:47 UTC (rev 13711)
@@ -1518,7 +1518,7 @@
my $copy = $self->copy;
if($copy) {
- $logger->debug("ciculator: Pre-cat copy already exists in checkout: ID=" . $copy->id);
+ $logger->debug("circulator: Pre-cat copy already exists in checkout: ID=" . $copy->id);
$copy->editor($self->editor->requestor->id);
$copy->edit_date('now');
@@ -1566,7 +1566,7 @@
my $count = $self->noncat_count || 1;
my $cotime = clense_ISO8601($self->checkout_time) || "";
- $logger->info("ciculator: circ creating $count noncat circs with checkout time $cotime");
+ $logger->info("circulator: circ creating $count noncat circs with checkout time $cotime");
for(1..$count) {
@@ -1981,18 +1981,18 @@
if(!$notifier->event) {
- $logger->info("ciculator: attempt at sending hold notification for hold $holdid");
+ $logger->info("circulator: attempt at sending hold notification for hold $holdid");
my $stat = $notifier->send_email_notify;
if( $stat == '1' ) {
- $logger->info("ciculator: hold notify succeeded for hold $holdid");
+ $logger->info("circulator: hold notify succeeded for hold $holdid");
return;
}
- $logger->warn("ciculator: * hold notify failed for hold $holdid");
+ $logger->warn("circulator: * hold notify failed for hold $holdid");
} else {
- $logger->info("ciculator: Not sending hold notification since the patron has no email address");
+ $logger->info("circulator: Not sending hold notification since the patron has no email address");
}
}
@@ -2428,7 +2428,7 @@
$self->mk_script_runner;
}
- $logger->activity("ciculator: circ_permit_renew for user ".
+ $logger->activity("circulator: circ_permit_renew for user ".
$self->patron->id." returned events: @$events") if @$events;
$self->push_events(OpenILS::Event->new($_)) for @$events;
More information about the open-ils-commits
mailing list