adjust log levels to work better with debug level output
Tyler Riddle [Wed, 10 Oct 2012 23:03:26 +0000 (16:03 -0700)]
lib/Object/Remote/MiniLoop.pm
lib/Object/Remote/WatchDog.pm

index 463ca79..ab8e85a 100644 (file)
@@ -107,7 +107,7 @@ sub watch_time {
 
 sub unwatch_time {
   my ($self, $id) = @_;
-  log_debug { "Removing timer with id of '$id'" };
+  log_trace { "Removing timer with id of '$id'" };
   @$_ = grep !($_ eq $id), @$_ for $self->_timers;
   return;
 }
index 170b2b2..3d47ac4 100644 (file)
@@ -38,7 +38,7 @@ sub reset {
   die "Attempt to reset the watchdog before it was constructed"
     unless defined $WATCHDOG; 
   
-  log_trace { "Watchdog has been reset" };
+  log_debug { "Watchdog has been reset" };
   alarm($WATCHDOG->timeout); 
 }
 
@@ -48,6 +48,7 @@ sub reset {
 #it makes sense to still terminate the process
 sub shutdown {
   my ($self) = @_;
+  log_debug { "Watchdog is shutting down" };
   alarm(0); 
 }