Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 602549
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T16:50:05+00:00 2026-05-13T16:50:05+00:00

Is it possible to get Log4perl to correctly display the line number and package/class

  • 0

Is it possible to get Log4perl to correctly display the line number and package/class of the log event instead of always Method::Delegation at line 99 when used with Moose?

In my case, I have created an attribute isa Log::Log4perl::Logger and delegated the various logging levels to my class (log, warn, error, …). Doing this also shows the Delegation.pm as the file.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T16:50:05+00:00Added an answer on May 13, 2026 at 4:50 pm

    You don’t provide nearly enough information to diagnose your issue (e.g. what is Method::Delegation and how is it connected to Log4perl), but my spidey senses tell me you probably have a wrapper method from which you call the Log4perl methods. You should increase the value of $Log::Log4perl::caller_depth from within this wrapper (and decrement it after calling into Log4perl) so the proper location is determined.

    e.g. in Moose, I use:

    package MyApp::Role::Log;
    
    use MooseX::Role::Strict;
    use Log::Log4perl;
    
    my @methods = qw(
        log trace debug info warn error fatal
        is_trace is_debug is_info is_warn is_error is_fatal
        logexit logwarn error_warn logdie error_die
        logcarp logcluck logcroak logconfess
    );
    
    has '_logger' => (
        is => 'ro',
        isa => 'Log::Log4perl::Logger',
        lazy_build => 1,
        handles => \@methods,
    );
    
    around $_ => sub {
        my $orig = shift;
        my $this = shift;
    
        # one level for this method itself
        # two levels for Class::MOP::Method::Wrapped (the "around" wrapper)
        # one level for Moose::Meta::Method::Delegation (the "handles" wrapper)
        local $Log::Log4perl::caller_depth += 4;
    
        my $return = $this->$orig(@_);
    
        $Log::Log4perl::caller_depth -= 4;
        return $return;
    
    } foreach @methods;
    
    
    sub _build__logger
    {
        my $this = shift;
    
        Log::Log4perl->easy_init() if not Log::Log4perl::initialized();
        return Log::Log4perl->get_logger(ref $this)
    }
    
    no MooseX::Role::Strict;
    1;
    

    Note that the CPAN module MooseX::Log::Log4perl does not increment caller_depth, which it definitely should.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicates: Get method name and type using lambda expression Can I use Expression<Func<T,
Possible Duplicate: get python class parent(s) I have a: class Animal(models.Model): pass class Cat(Aminal):
Possible Duplicate: Get Class List for Element with jQuery If I have something like
Is It possible get ticks number with same format like DateTime.Ticks .NET object, that
Possible Duplicate: Get class of generic I'm trying to do this: public static<T extends
does anyone know how to (if possible) get the owner of the tag on
I am trying to work out if it is possible get JPA to persist
Possible Duplicate: Get variable name. javascript “reflection” Is there a way to know the
Possible Duplicate: Get file name from URI string in C# How to extract file
Possible Duplicate: Get the resolution of a jpeg image using C# and the .NET

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.