| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | ## JBoss, Home of Professional Open Source.# Copyright 2010, Red Hat, Inc., and individual contributors# as indicated by the @author tags. See the copyright.txt file in the# distribution for a full listing of individual contributors.## This 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 software 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 software; if not, write to the Free# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA# 02110-1301 USA, or see the FSF site: http://www.fsf.org.## Additional loggers to configure (the root logger is always configured)loggers=jacorb,com.arjuna,jacorb.config,sun.rmilogger.level=INFOlogger.handlers=CONSOLE,FILElogger.jacorb.level=WARNlogger.jacorb.useParentHandlers=truelogger.com.arjuna.level=WARNlogger.com.arjuna.useParentHandlers=truelogger.jacorb.config.level=ERRORlogger.jacorb.config.useParentHandlers=truelogger.sun.rmi.level=WARNlogger.sun.rmi.useParentHandlers=truehandler.CONSOLE=org.jboss.logmanager.handlers.ConsoleHandlerhandler.CONSOLE.level=INFOhandler.CONSOLE.formatter=CONSOLEhandler.CONSOLE.properties=autoFlush,targethandler.CONSOLE.autoFlush=truehandler.CONSOLE.target=SYSTEM_OUThandler.FILE=org.jboss.logmanager.handlers.PeriodicRotatingFileHandlerhandler.FILE.level=INFOhandler.FILE.formatter=FILEhandler.FILE.properties=autoFlush,append,fileName,suffixhandler.FILE.constructorProperties=fileName,appendhandler.FILE.autoFlush=truehandler.FILE.append=truehandler.FILE.fileName=${org.jboss.boot.log.file:boot.log}handler.FILE.suffix=.yyyy-MM-ddformatter.CONSOLE=org.jboss.logmanager.formatters.PatternFormatterformatter.CONSOLE.properties=patternformatter.CONSOLE.pattern=%K{level}%d{HH\:mm\:ss,SSS} %-5p [%c] (%t) %s%E%nformatter.FILE=org.jboss.logmanager.formatters.PatternFormatterformatter.FILE.properties=patternformatter.FILE.constructorProperties=patternformatter.FILE.pattern=%d{HH\:mm\:ss,SSS} %-5p [%c] (%t) %s%E%n
 |