[open-ils-commits] r13710 - trunk/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:31 EDT 2009
Author: erickson
Date: 2009-07-23 10:59:28 -0400 (Thu, 23 Jul 2009)
New Revision: 13710
Modified:
trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm
Log:
patch from Ben Ostrowsky to fix log entry typos: ciculator -> circulator
Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm 2009-07-23 14:57:02 UTC (rev 13709)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm 2009-07-23 14:59:28 UTC (rev 13710)
@@ -1557,7 +1557,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');
@@ -1605,7 +1605,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) {
@@ -2020,18 +2020,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");
}
}
@@ -2467,7 +2467,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