# # Copyright (c) 2011-2012 EBM WebSourcing, 2012-2015 Linagora # # This program/library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 2.1 of the License, or (at your # option) any later version. # # This program/library is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License # for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program/library; If not, see # for the GNU Lesser General Public License version 2.1. # Set the options for the Console appender. # Console's layout is a PatternLayout, using the conversion pattern # %d: current date in ISO8601 format # %p: priority of the logging event # %c: category name # %m: the message log4j.appender.Console=org.apache.log4j.ConsoleAppender log4j.appender.Console.layout=org.apache.log4j.PatternLayout log4j.appender.Console.layout.ConversionPattern=%d %-5p %c{3} %m\n # Root logger set to INFO using the Console appender defined above. log4j.rootLogger=fatal,Console ###################### # Logger definitions # ###################### # CXF logger # #log4j.logger.org.apache.cxf=fatal,Console #log4j.additivity.org.apache.cxf=true # Hibernate logger # log4j.logger.org.hibernate=fatal,Console log4j.additivity.org.hibernate=true # Registry logger # log4j.logger.org.ow2.petals.registry=fatal,Console log4j.additivity.org.ow2.petals.registry=true