On Wed, 2006-05-03 at 16:48 -0400, Perrin Harkins wrote:
> On Tue, 2006-05-02 at 17:43 -0500, Matthew wrote:
> > Hey gang,
> >   When I actually execute the code in web browser 
> > (http://www.mydomain.com/test/tester), I get this in my apache error_log:
> > 
> > [Tue May  2 23:33:57 2006] v2.pm: Subroutine handler redefined at 
> > /home/me/public_html/confer//mypackage/tester.pm line 10.
> > <..repeats for each subroutine in the file..>
> 
> That's not a problem.  This is just a warning telling you that
> Apache::Reload has reloaded your module and the sub was redefined.  If
> it really bothers you, you can add a "no warnings (redefine)" to your
> version of Apache::Reload.

Correction:
Add "no warnings qw(redefine);" to your module.  You shouldn't need to
modify Apache::Reload.

- Perrin

Reply via email to