[open-ils-commits] r13712 - branches/rel_1_6/Open-ILS/src/perlmods/OpenILS/Application/Circ (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Thu Jul 23 11:00:04 EDT 2009


Author: erickson
Date: 2009-07-23 11:00:02 -0400 (Thu, 23 Jul 2009)
New Revision: 13712

Modified:
   branches/rel_1_6/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/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm
===================================================================
--- branches/rel_1_6/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm	2009-07-23 14:59:47 UTC (rev 13711)
+++ branches/rel_1_6/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm	2009-07-23 15:00:02 UTC (rev 13712)
@@ -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