Logger Declaration

Two operations are executed:

  • import statements
  • declare logger
  • Most of the documentation is already done in the Preferences

    Here's an example:

    import org.apache.log4j.Logger;
    
    public class MyClass {
    	/**
    	 * Logger for this class
    	 */
    	private static final Logger logger = Logger.getLogger(MyClass.class);
    



    http://log4e.jayefem.de