log4j Setups

C

CrassMaster

I am starting to use/recommend log4j as our default logging tool and I
have spoken with many collegues, but I was wondering what is the best
implementation?

Do you write a wrapper around the logger or just something like this
in every class.

thanks for any help



package logging;

import org.apache.log4j.Logger;
import org.apache.log4j.PropertyConfigurator;


public class TestLog {

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

public static void main( String [] args ) {

PropertyConfigurator.configure( "loginfo.properties" );

logger.info( "STARTING APP" );
logger.debug( "initializing cntr" );
logger.info( "ENDING APP" );


}
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top