Ged Haywood wrote:
On Thu, 20 Feb 2003, Nick Tonkin wrote:


Hi,

In my logs when dumping a warn() I see this occasionally:

192.168.0.24 at /home/wm/perl/WM/Auth/Access.pm line 28.
192.168.0.24 at /home/wm/perl/WM/Auth/Access.pm line 28.
192.168.0.24 at /home/wm/perl/WM/Auth/Access.pm line 28.
192.168.0.24 at /home/wm/perl/WM/Auth/Access.pm line 28, <GEN1> line 245.
192.168.0.24 at /home/wm/perl/WM/Auth/Access.pm line 28.
192.168.0.24 at /home/wm/perl/WM/Auth/Access.pm line 28.

Anyone know what <GEN1> is

I think it comes from Symbol.pm.  It's a handle: the string "GEN" is
in the source, the digit is just picked by the package when it opens a
file/socket/whatever it's doing.
Most likely.

and why it appears every so often?
Try adding

use Carp;
$SIG{__WARN__} = \&Carp::cluck;

in your startup.pl, this may shed some light. what's the call at line 28 of Access.pm? May be some debug print was forgotten in the modperl source code.

__________________________________________________________________
Stas Bekman JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/ mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org http://ticketmaster.com

Reply via email to