diff options
author | Daniel Friesel <derf@finalrewind.org> | 2014-10-30 14:43:37 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2014-10-30 14:43:37 +0100 |
commit | fdd2eb6560494f29f9f32cce3e4c156adc659738 (patch) | |
tree | 6b6ef04133ab2f8bfb32946c684efa2edf1ed8a9 /bin | |
parent | db2e06e1decb3b25df765b75326a8e35248d1def (diff) |
db-iris: more informative warning messages on (network) problems
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/db-iris | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/db-iris b/bin/db-iris index a362ccc..7207b66 100755 --- a/bin/db-iris +++ b/bin/db-iris @@ -272,6 +272,7 @@ if ( my $err = $status->errstr ) { } if ( my $warning = $status->warnstr ) { say STDERR "Request warning: ${warning}"; + say STDERR ' Information may be incomplete'; } if ( $status_via and $status_via->errstr ) { @@ -282,6 +283,7 @@ if ( $status_via and $status_via->errstr ) { if ( $status_via and $status_via->warnstr ) { my $warning = $status_via->warnstr; say STDERR "Request warning in --via : ${warning}"; + say STDERR ' Information may be incomplete'; } sanitize_options(); |