# An example log4j configuration file that outputs to System.out. # The output info consists of priority, thread name, # category name the message in that order. # For the general syntax of propperty based configuration files see # the documenation of org.log4j.PropertyConfigurator. # The root category uses the appender called A1. Since no priority is # specified, the root category assumes the default priority for root # which is DEBUG in log4j. The root category is the only category that # has a default priority. All other categories do not have a default # priority. in which case the priority is inherited from the # hierarchy. The priorities are ERROR, WARN, INFO, DEBUG, listed in # decreasing order of priority. To disable all logging requests # regardless of category and priority set rootCategory=EMERG, # the highest possible priority, and outcomment all other categories. # Set root category priority to INFO and its only appender to A1 log4j.rootCategory=INFO, A1 # ---------------------------------------------------------------------------- # A1 is set to be a FileAppender which outputs to System.out. log4j.appender.A1=org.apache.log4j.FileAppender log4j.appender.A1.File=System.out # A1 uses PatternLayout. log4j.appender.A1.layout=org.apache.log4j.PatternLayout # The conversion pattern uses format specifiers. You might want to # change the pattern an watch the output layout change. # log4j.appender.A1.layout.ConversionPattern=%-4r %-5p [%t] %37c %3x - %m%n #log4j.appender.A1.layout.ConversionPattern=%p %t %c - %m%n log4j.appender.A1.layout.ConversionPattern=%-5p [%t] %20c - %m%n # ----------------------------------------------------------------------------- # LOG FOR TAMINO API TESTS #log4j.category.com.softwareag.tamino.api.dom.qe=FINE #log4j.category.com.softwareag.tamino.qe=FINE #log4j.category.com.softwareag.tamino.db.api.qe=FINE #log4j.category.com.softwareag.tamino.qe.testconfig=FINE #log4j.category.com.softwareag.tamino.qe.general=FINE #log4j.category.com.softwareag.tamino.db.api.accessor.qe.TXMLObjectAccessor=FINE log4j.category.com.softwareag.tamino.api.dom.qe=FINE