12 messages in org.apache.logging.log4j-userCreate LogFactory/Log for Log4j and u...
FromSent OnAttachments
CAGATAY TUNALIJun 10, 2004 12:45 am 
Vernier, Dominique (DVernier)Jun 10, 2004 12:48 am 
Ceki GülcüJun 10, 2004 2:19 am 
Vernier, Dominique (DVernier)Jun 10, 2004 2:35 am 
Ceki GülcüJun 10, 2004 3:38 am 
Vernier, Dominique (DVernier)Jun 10, 2004 5:50 am 
CAGATAY TUNALIJun 10, 2004 6:28 am 
Thomas MullerJun 10, 2004 6:30 am 
Shirish GoelJun 11, 2004 9:24 pm 
mrut...@westpac.com.auJun 15, 2004 4:22 pm 
mrut...@westpac.com.auJun 15, 2004 4:27 pm 
mrut...@westpac.com.auJun 15, 2004 4:27 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Create LogFactory/Log for Log4j and use commons.loggingActions...
From:Vernier, Dominique (DVernier) (dver@relaystar.com)
Date:Jun 10, 2004 12:48:57 am
List:org.apache.logging.log4j-user

Hi,

I would like to use commons.logging with Log4j has underlying logging system. I know that commos.logging will use Log4j if it found in the class path, but I would like to create my own LogFactory and use:

import org.apache.commons.logging.Log;

import org.apache.commons.logging.LogFactory;

private static Log logger = LogFactory.getLog(Test.class);

I know also that by setting system property -Dorg.apache.commons.logging.Log=... we can define the Log class used by commons.logging.LogFactory to instanciate the Logger.

Then based on the sample of MyLoggerFactory and MyLogger, I create my own factory and logger. I implement the commons.logging.Log in the MyLogger, but when I used it I have a nullpointer on the repository.

Do you have any idea or examples on which I can relie?

Thx Dominique