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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T18:33:27+00:00 2026-05-16T18:33:27+00:00

I have a GUI application in swing, implemented in NetBeans. For the various functionality

  • 0

I have a GUI application in swing, implemented in NetBeans. For the various functionality provided from the input of the user, a jar is used, which uses log4j for logging. All is ok, but I have to redirect information from log4j to a text area in my GUI. I have found that to redirect from log4j to swing text area, one must extend an AppenderSkeleton. My problem is that I can not modify the gui (so as to have a JTextArea that extends an AppenderSkeleton for example) so I have to have such a class that appends to my JTextarea. Now my application initializes before log4j. My problem is that I can not find a way to set as property to the AppenderSkeleton custom class, a reference to the jtextarea of my gui , so that when log4j initializes the appender, it will pass a reference to the application’s text area.
I tried in the log4J configuration file something like:
log4j.appender.myAppender.theTextArea=path.to.myFrameclass.theTextArea
hopping that log4j would call the setter in my appender and the getter from my frame to set the text area, but it does not work.
How can I make the appender initialized by log4j, redirect info to my application?
Or is there a way for my application to initialize the custom appender and notify log4j to use it for logging?
Thank you!

  • 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-16T18:33:28+00:00Added an answer on May 16, 2026 at 6:33 pm

    The simplest option is to programmatically add your appender once your GUI has been initialised. Something like this:

    Logger.getRootLogger().addAppender(yourTextAreaAppender);
    

    EDIT: To only log the INFO level do this:

    yourTextAreaAppender.addFilter(new Filter() {
        @Override
        public int decide(LoggingEvent event) {
            if (event.getLevel().equals(Level.INFO)) {
                return ACCEPT;
            } else {
                return DENY;
            }
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have implemented a standalone java application which uses the swing framework for GUI.As
I'm developing Swing application, and everything works fine usually. But I have an GUI
I have to setup a basic JAVA application including a GUI based on swing.
I have a GUI application which works with point cloud data and a quadtree
I have a win32 GUI (MFC) application which I need to port to a
I am developing a Java Desktop Application with GUI implemented in SWING. I hava
My Swing Application's GUI is built using Window Builder Pro GUI editor. Layouts used
I am developing a desktop Java application with GUI implemented through Swing . I
I have created a Swing Application- GUI containing fields like TextFields, Labels, CheckBoxes and
I have been coding an application which renders tiles and GUI and all that.

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.