Better task-level logging.
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Task / Retrieve.pm
index 095fe02..15877bc 100644 (file)
@@ -1,4 +1,3 @@
-# $Id: Retrieve.pm,v 1.3 2006-11-02 16:11:44 mike Exp $
 
 package ZOOM::IRSpy::Task::Retrieve;
 
@@ -31,6 +30,9 @@ sub new {
     my $this = $class->SUPER::new(@_);
     $this->{rs} = $rs;
     $this->{index0} = $index0;
+    # Save initial record-syntax for render()'s benefit
+    $this->{syntax} = $this->{options}->{preferredRecordSyntax};
+
     return $this;
 }
 
@@ -40,10 +42,13 @@ sub run {
     $this->set_options();
 
     my $conn = $this->conn();
+    $conn->connect($conn->option("host"));
+
     my $rs = $this->{rs};
     my $index0 = $this->{index0};
     $this->irspy()->log("irspy_task", $conn->option("host"),
-                       " retrieving record $index0 from $rs");
+                       " retrieving record $index0 from $rs, rs='",
+                       $rs->option("preferredRecordSyntax"), "'");
     $rs->records($index0, 1, 0); # requests record
     warn "no ZOOM-C level events queued by $this"
        if $conn->is_idle();
@@ -53,7 +58,7 @@ sub run {
 
 sub render {
     my $this = shift();
-    my $syntax = $this->{options}->{preferredRecordSyntax};
+    my $syntax = $this->{syntax};
     $syntax = defined $syntax ? "'$syntax'" : "undef";
     return ref($this) . "(" . $this->{index0} . ", $syntax)";
 }