diff options
Diffstat (limited to 'rhimport-wl')
-rwxr-xr-x | rhimport-wl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rhimport-wl b/rhimport-wl index 072c771..cf51b73 100755 --- a/rhimport-wl +++ b/rhimport-wl @@ -111,12 +111,13 @@ for my $entry ($feed->entries) { close $writer; waitpid $pid, 0; if ( $? >> 8 ) { - print "\n\nPV: adding note failed\n"; + print "\n\nPV: adding note returned non-zero value\n"; print "STDERR:\n" . join('', <$error>) . "\n"; print "STDOUT:\n" . join('', <$reader>) . "\n"; print "Ignoring failed headline import!\n"; } else { print join('', <$reader>) . "\n"; + print join('', <$error>) . "\n"; } print "\n"; } |