From 8a79df70921e2a0da6a31d32f4f3a3ff5ecdf08b Mon Sep 17 00:00:00 2001 From: Stefan Schantl Date: Wed, 20 Jul 2016 13:15:21 +0200 Subject: [PATCH 1/1] Display ignored addresses when running in debug mode. Signed-off-by: Stefan Schantl --- modules/Events.pm | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/modules/Events.pm b/modules/Events.pm index 30fdd96..c451914 100644 --- a/modules/Events.pm +++ b/modules/Events.pm @@ -484,7 +484,19 @@ sub GenerateIgnoreList($) { my $amount = scalar(keys(%ignorehash)); # Write out log message. - $logger->Log("debug", "Ignore list currently contains $amount entries."); + $logger->Log("debug", "Ignore list currently contains $amount entries:"); + + # Sort the ignore hash. + my @sorted_addresses = &Guardian::Base::SortAddressHash(\%ignorehash); + + # Loop through the entire array. + foreach my $address (@sorted_addresses) { + # Log the ignored address. + $logger->Log("debug", "\- $address"); + } + + # Finished return nothing. + return; } # -- 2.39.2