in reply to Ignoring errors

Archive::Zip::setErrorHandler( sub { } );

should suppress the messages, although it will suppress all of them, which might be too much - you may want to write a custom handler, e.g. one that calls your $logger.

Replies are listed 'Best First'.
Re^2: Ignoring errors
by roperl (Beadle) on Aug 28, 2017 at 17:09 UTC
    that worked. Thanks!