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 261539
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T22:26:26+00:00 2026-05-11T22:26:26+00:00

I am starting using logback and I want to know if there are better

  • 0

I am starting using logback and I want to know if there are better ways of doing something.
I have this code:

public class ClassA {
    private List<String> l;
    private Logger logger;

    public ClassA(){
        this.logger = LoggerFactory.getLogger(this.getClass().getName());
    }
....
    public List<String> method() {
        this.logger.debug("method()");
        List<String> names;

        try {
            names = otherClass.getNames();
        } catch (Exception e) {
            String msg = "Error getting names";
            this.logger.error(msg);
            throw new ClassAexception(msg, e);
        }

        this.logger.debug("names: {}", xxxxx);
        return names;
}

I have some doubts so far:

  • Every class will have a this.logger = LoggerFactory.getLogger(this.getClass().getName()); to create a logger.
  • Every method will have a this.logger.debug("method()"); to know when a method is called.

That doesn’t look good. Is there a way to solve it?

Also I want to print a list in the .log in this line: this.logger.debug("names: {}", xxxxx);

the xxxxx should be replaced with something to print the list. An anonymous class?

Thanks for reading!

  • 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-11T22:26:26+00:00Added an answer on May 11, 2026 at 10:26 pm

    Using AspectJ and log4j you can use this. Compile your code with ajc compiler instead of javac and then run as normal with java executable.

    You need to have the aspectjrt.jar and log4j.jar on the classpath.

    import org.aspectj.lang.*;
    import org.apache.log4j.*;
    
    public aspect TraceMethodCalls {
        Logger logger = Logger.getLogger("trace");
    
        TraceMethodCalls() {
            logger.setLevel(Level.ALL);
        }
    
        pointcut traceMethods()
            //give me all method calls of every class with every visibility
            : (execution(* *.*(..))
            //give me also constructor calls
            || execution(*.new(..)))
            //stop recursion don't get method calls in this aspect class itself
            && !within(TraceMethodCalls);
    
        //advice before: do something before method is really executed
        before() : traceMethods() {
            if (logger.isEnabledFor(Level.INFO)) {
                //get info about captured method and log it
                Signature sig = thisJoinPointStaticPart.getSignature();
                logger.log(Level.INFO,
                            "Entering ["
                            + sig.getDeclaringType().getName() + "."
                            + sig.getName() + "]");
            }
        }
    }
    

    Check out the AspectJ documentation on how to change the TraceMethodCalls calls.

    // e.g. just caputre public method calls
    // change this
    : (execution(* *.*(..))
    // to this
    : (execution(public * *.*(..))
    

    Regarding the

    Also I want to print a list in the
    .log in this line:
    this.logger.debug("names: {}", xxxxx);

    That’s supported by slf4j/logback by default. Just do

    logger.debug("names: {}", names);
    

    for example

    List<String> list = new ArrayList<String>();
    list.add("Test1"); list.add("Test2"); list.add("Test3");
    logger.debug("names: {}", list);
    
    //produces
    //xx::xx.xxx [main] DEBUG [classname] - names: [Test1, Test2, Test3]
    

    Or do you want something specifically different?

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

Sidebar

Related Questions

I'm starting my development using Unity. I'm doing something like that: if(Input.GetKey(KeyCode.A))newValues[1]-=this.turnSpeed*(float)Time.deltaTime; if(Input.GetKey(KeyCode.D))newValues[1]+=this.turnSpeed*(float)Time.deltaTime; transform.Rotate(0,
I am currently starting using doxygen to document my source code. I have notice
I'm using this code as the starting point to an overhaul of our JavaScript
I´m starting using xquery and I want to know how to get the values
I'm on a Linux Ubuntu 12.04 system. I have been using this code to
I just starting using VS2005 and I wish to have code highlighting in C/C++.
I'm starting using R but I'm having some problems doing something that would be
I have just reinstalled LAMPP. When I try starting LAMPP using /opt/lampp/lampp start ,
Just starting using the Firebug console. I have a test script which I'll post
I'm just starting using cakePHP and I saw on that there was an AJAX

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.