http://qs321.pair.com?node_id=925522


in reply to Re: log4perl and efficiency
in thread log4perl and efficiency

Unless I misunderstood, that's what I did. well, not using a function but the "if (condition) { log }" does the same thing, doesn't it?

Replies are listed 'Best First'.
Re^3: log4perl and efficiency
by Solo (Deacon) on Sep 12, 2011 at 17:44 UTC
    That's one approach. I was suggesting:
    $self->{logger}->trace( sub { "total NbObsThis $i=$nbObservedThisNGram +->[$i]; nbObsAll $i=$nbObservedAllNGrams->[$i]; total=$totalObservedA +ll; nbExpected $i=$nbExpectedThis[$i]; chisq = $chiSquare[$i]" } );
    which may be easier to bulk modify in source while maintaining existing log levels. (or not. YMMV.)

      ok, I didn't realize this advantage. thanks for the explanation!