From: Kevin M. G. <cp...@go...> - 2007-05-03 16:39:16
|
Johannes Kilian wrote: > Hi Mike, > > a simple one-liner using Log::Log4Perl produces a lot of redefinitons. What does this mean and how can I avoid it? (Longer programs produces this output too when using Log::Log4perl and starting the script ... that's annoying) > (Using ActiveStatePerl 5.8.8.817 and Log::Log4Perl 1.06 or 1.10) > > C:\WINDOWS>perl -we "use Log::Log4Perl; print @INC;" The package name is Log4perl with a lowercase 'p', not capital. I don't have a windows box handy, but try that instead. I'd bet windows or activestate is doing something fancy vis-a-vis windows' case insensitiviy. perl -we "use Log::Log4perl; print @INC;" |