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

Ask A Question

Stats

  • Questions 124k
  • Answers 124k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Are you running on OS 3.0? I saw the same… May 12, 2026 at 1:19 am
  • Editorial Team
    Editorial Team added an answer It looks like you need to register Apache::Session::Memcached with Apache::Session::Wrapper,… May 12, 2026 at 1:19 am
  • Editorial Team
    Editorial Team added an answer Use DATENAME or DATEPART: SELECT DATENAME(dw,GETDATE()) -- Friday SELECT DATEPART(dw,GETDATE())… May 12, 2026 at 1:19 am

Related Questions

I am starting using YUI 's Container control in my application to display messagebox
I have a script which needs to periodically start programs out of a array
I am starting a project from scratch using Intersystems Cache. I would like to
I am starting out on a project that will involve ASP.NET MVC using a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.