diff options
author | Daniel Friesel <derf@finalrewind.org> | 2014-01-17 09:19:35 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2014-01-17 09:19:35 +0100 |
commit | b19328aecd79a91ea4535edd8dddc2e4908d615f (patch) | |
tree | 1199462136ecbb4b222368000b5f3b4568e01f11 /bin | |
parent | 7a927e34c281defd5b60cf432a18a7405ba4d453 (diff) |
implement -oq (qos_messages in Result.pm)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/db-iris | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/db-iris b/bin/db-iris index 1bbe5b2..d0e2662 100755 --- a/bin/db-iris +++ b/bin/db-iris @@ -151,6 +151,10 @@ sub display_result { if ( $edata{delay} and $d->delay and $d->delay_messages ) { printf( ' %s', ( $d->delay_messages )[-1]->[1] ); } + if ( $edata{qos} and $d->qos_messages ) { + printf( ' %s', + join( ' ', map { $_->[1] } ( reverse $d->qos_messages ) ) ); + } print "\n"; if ( $edata{times} ) { |