tim@257: ###############################################################################
tim@257: # Developmentconfiguration for the Loggingengine.
tim@257: # The Configuration will only log the Information to the Console.
tim@257: # For Test- and Productionenviroment it is necessary to create a
tim@257: # separate Configuration which will be log the Informations e.g. into
tim@257: # a File (RolingFileAppender).
tim@257: ###############################################################################
tim@257: 
tim@199: # Set root logger level to DEBUG and its only appender to A1.
tim@199: log4j.rootLogger=DEBUG, A1
tim@199: 
tim@199: # A1 is set to be a ConsoleAppender.
tim@199: log4j.appender.A1=org.apache.log4j.ConsoleAppender
tim@199: 
tim@199: # A1 uses PatternLayout.
tim@199: log4j.appender.A1.layout=org.apache.log4j.PatternLayout
tim@199: log4j.appender.A1.layout.ConversionPattern=%d [%t] %-5p %c - %m%n