# # Copyright (c) 2007-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 # Requests appender is used to log requests received by the controller. # These log can be automatically replayed using the request player. log4j.appender.File=org.apache.log4j.RollingFileAppender log4j.appender.File.File=/tmp/tribe.log log4j.appender.File.MaxFileSize=100MB log4j.appender.File.MaxBackupIndex=5 log4j.appender.File.layout=org.apache.log4j.PatternLayout log4j.appender.File.layout.ConversionPattern=%d{ABSOLUTE} %c{1} %m\n # Root logger set to INFO using the Console appender defined above. log4j.rootLogger=FATAL, File ###################### # Logger definitions # ###################### # Tribe channels # log4j.logger.org.objectweb.tribe.channels=FATAL, File log4j.additivity.org.objectweb.tribe.channels=false # Tribe Group Membership Service (GMS) # log4j.logger.org.objectweb.tribe.gms=FATAL, File log4j.additivity.org.objectweb.tribe.gms=false # Tribe Discovery Service (used by GMS) # log4j.logger.org.objectweb.tribe.gms.discovery=FATAL, File log4j.additivity.org.objectweb.tribe.gms.discovery=false # Tribe Multicast Dispatcher building block # log4j.logger.org.objectweb.tribe.blocks.multicastdispatcher=FATAL, File log4j.additivity.org.objectweb.tribe.blocks.multicastdispatcher=false