From 9b6b89640a07399bd0189f6d771be505c751ffed Mon Sep 17 00:00:00 2001 From: Lotfi zaouche Date: Sat, 30 May 2020 10:03:10 +0000 Subject: [PATCH] remove useless print --- centreon-plugins/blockchain/parity/ethpoller/mode/tracking.pm | 3 --- 1 file changed, 3 deletions(-) diff --git a/centreon-plugins/blockchain/parity/ethpoller/mode/tracking.pm b/centreon-plugins/blockchain/parity/ethpoller/mode/tracking.pm index 0ba1bdc59..72cdb5ff4 100644 --- a/centreon-plugins/blockchain/parity/ethpoller/mode/tracking.pm +++ b/centreon-plugins/blockchain/parity/ethpoller/mode/tracking.pm @@ -125,9 +125,6 @@ sub custom_mining_prct_calc { $self->{result_values}->{total_block} = Math::BigFloat->new($options{new_datas}->{$self->{instance} . '_total_block'}); $self->{result_values}->{mining_prct} = (defined($self->{result_values}->{total_block}) && $self->{result_values}->{total_block} != 0) ? $self->{result_values}->{mined_block_count} / $self->{result_values}->{total_block} * 100 : 0; - use Data::Dumper; - print Dumper($self->{result_values}->{mined_block_count}); - print Dumper($self->{result_values}->{total_block}); return 0; }