From 6b72e9dd74f619f49be210ed5cccf36f07d6b374 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 11 May 2021 15:12:15 +0200 Subject: [PATCH] report: dir2text: print what we process on STDERR to avoid those "lonely" "OK" prints for those Signed-off-by: Thomas Lamprecht --- PVE/Report.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/PVE/Report.pm b/PVE/Report.pm index 73bea40b..64a537c0 100644 --- a/PVE/Report.pm +++ b/PVE/Report.pm @@ -9,6 +9,7 @@ use PVE::Tools; my sub dir2text { my ($target_dir, $regexp) = @_; + print STDERR "dir2text '${target_dir}${regexp}'..."; my $text = ''; PVE::Tools::dir_glob_foreach($target_dir, $regexp, sub { my ($file) = @_;