static Logger logger = Logger.getLogger(Module.class);

        private void sendMailButtonAction()
        {
                SimpleLayout layout = new SimpleLayout();
                 FileAppender appender = null;
                 try
                 {
                         String fileName =
DateFormat.getDateInstance().format(new java.util.GregorianCalendar()
                                 .getTime()) + "-LOG_FILE.txt";
                         System.out.println(fileName);
                         appender = new FileAppender(layout,fileName,true);
                 }
                        catch(Exception e)
                 {
                         e.printStackTrace();
                 }

                 logger.addAppender(appender);
                 logger.setLevel((Level) Level.DEBUG);

                 logger.info(logger.getName());


this is the code segment used... can anyone suggest how to get over this
problem?

Thank you,
Regards,
Charith I. Fernando
+94 77 3263222 (Mobile)

-----Original Message-----
From: Charith Fernando [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 24, 2005 12:17 PM
To: 'Log4J Users List'
Subject: RE: LOG4J messages printing twice

    static Logger logger = Logger.getLogger(MessageSenderBean.class);

this is the code that I use to initialize the logger..... 

Thank you,
Regards,
Charith I. Fernando
+94 77 3263222 (Mobile)

-----Original Message-----
From: Charith Fernando [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 24, 2005 11:59 AM
To: 'Log4J Users List'
Subject: RE: LOG4J messages printing twice

I think the problem is the class gets called twice so the logger gets
initialized twice.. how can I solve this problem.

Thank you,
Regards,
Charith I. Fernando
+94 77 3263222 (Mobile)

-----Original Message-----
From: Charith Fernando [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 24, 2005 10:29 AM
To: 'Log4J Users List'
Subject: RE: LOG4J messages printing twice

Can u do this by having a static initializer?

Thank you,
Regards,
Charith I. Fernando
+94 77 3263222 (Mobile)

-----Original Message-----
From: Charith Fernando [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 24, 2005 10:19 AM
To: [email protected]
Subject: LOG4J messages printing twice

Hi all,

 

When my code runs the number of times it prints on the screen increases by 1
in each run.

 

I suspect that the loader gets registered more than once. whats the solution
for this?

 

Thank you,

Regards,

Charith I. Fernando

+94 77 3263222 (Mobile)

 



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to