Perl is complaining about a deep recursion on a subroutine. That is natural, as I have deep recursion :). But that recursion is being controled and therefore I know that will not be a problem.
Now the question is: can I silence Perl on these warnings?
I believe you're looking for no warnings 'recursion';. (And I don't blame you for no knowing about that since so many warnings are included in perllexwarn and many of them are quite arbitrarily named
Re:perldoc perllexwarn
ambs on 2010-01-20T14:48:43
Exactly that. Thanks!