reduce debug logging
This commit is contained in:
parent
71c7b324e9
commit
3dcfd3e26e
|
@ -1072,8 +1072,10 @@ sub time_of_youngest_file {
|
|||
foreach my $file ( readdir( DIR ) ) {
|
||||
next if $file =~ /^\./;
|
||||
$_ = (stat($dir))[9];
|
||||
$youngest = $_ if $_ and ( $_ < $youngest );
|
||||
Debug("Found younger file $file at $youngest");
|
||||
if ($_ and ($_ < $youngest)) {
|
||||
$youngest = $_;
|
||||
Debug("Found younger file $file at $youngest");
|
||||
}
|
||||
}
|
||||
return $youngest;
|
||||
} # end sub time_of_youngest_file
|
||||
|
|
Loading…
Reference in New Issue