Support new "irspy_data" log-level to register information written to
authorMike Taylor <mike@indexdata.com>
Wed, 19 Dec 2012 12:06:27 +0000 (12:06 +0000)
committerMike Taylor <mike@indexdata.com>
Wed, 19 Dec 2012 12:06:27 +0000 (12:06 +0000)
target description record.

lib/ZOOM/IRSpy/Record.pm

index c5b6c1b..29160ec 100644 (file)
@@ -117,9 +117,10 @@ sub store_result {
         $xml .= " $key=\"" . xml_encode($info{$key}) . "\"";
     }
 
-    $xml .= ">" . isodate(time()) . "</irspy:$type>\n";
+    $xml .= ">" . isodate(time()) . "</irspy:$type>";
 
-    $this->append_entry('irspy:status', $xml);
+    $this->{irspy}->log("irspy_data", $xml);
+    $this->append_entry('irspy:status', $xml . "\n");
 }