patch from Ben Ostrowsky to fix log entry typos: ciculator -> circulator
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 23 Jul 2009 14:59:28 +0000 (14:59 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 23 Jul 2009 14:59:28 +0000 (14:59 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@13710 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm

index d433ff9..b1cd77b 100644 (file)
@@ -1557,7 +1557,7 @@ sub make_precat_copy {
     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 @@ sub checkout_noncat {
    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 @@ sub do_hold_notify {
 
     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 @@ sub run_renew_permit {
         $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;