Subject: | -quiet option doesn't work |
I am using Pod::Checker version 1.42, I'm not sure how to check the distribution version. I am using perl v5.8.6 on Cygwin 1.5.12.
When I pass the -quiet option to Pod::Checker->new(), it does not suppress errors or warnings, contrary to the documentation.
I can reproduce this with:
perl -MPod::Checker -e '$podchk = new Pod::Checker(-quiet => 1); print "true\n" if not $podchk->parse_from_file("Any file with POD errors");'
Looking at the code, it appears that -quiet will only suppress Pod::Parser warnings and errors, not Pod::Checker warnings or errors. That is not the behavior described in the documentation, nor the behavior I want.