logging.properties 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #
  2. # JBoss, Home of Professional Open Source.
  3. # Copyright 2010, Red Hat, Inc., and individual contributors
  4. # as indicated by the @author tags. See the copyright.txt file in the
  5. # distribution for a full listing of individual contributors.
  6. #
  7. # This is free software; you can redistribute it and/or modify it
  8. # under the terms of the GNU Lesser General Public License as
  9. # published by the Free Software Foundation; either version 2.1 of
  10. # the License, or (at your option) any later version.
  11. #
  12. # This software is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. # Lesser General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Lesser General Public
  18. # License along with this software; if not, write to the Free
  19. # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. # 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. #
  22. # Additional loggers to configure (the root logger is always configured)
  23. loggers=jacorb,com.arjuna,jacorb.config,sun.rmi
  24. logger.level=INFO
  25. logger.handlers=CONSOLE,FILE
  26. logger.jacorb.level=WARN
  27. logger.jacorb.useParentHandlers=true
  28. logger.com.arjuna.level=WARN
  29. logger.com.arjuna.useParentHandlers=true
  30. logger.jacorb.config.level=ERROR
  31. logger.jacorb.config.useParentHandlers=true
  32. logger.sun.rmi.level=WARN
  33. logger.sun.rmi.useParentHandlers=true
  34. handler.CONSOLE=org.jboss.logmanager.handlers.ConsoleHandler
  35. handler.CONSOLE.level=INFO
  36. handler.CONSOLE.formatter=CONSOLE
  37. handler.CONSOLE.properties=autoFlush,target
  38. handler.CONSOLE.autoFlush=true
  39. handler.CONSOLE.target=SYSTEM_OUT
  40. handler.FILE=org.jboss.logmanager.handlers.PeriodicRotatingFileHandler
  41. handler.FILE.level=INFO
  42. handler.FILE.formatter=FILE
  43. handler.FILE.properties=autoFlush,append,fileName,suffix
  44. handler.FILE.constructorProperties=fileName,append
  45. handler.FILE.autoFlush=true
  46. handler.FILE.append=true
  47. handler.FILE.fileName=${org.jboss.boot.log.file:boot.log}
  48. handler.FILE.suffix=.yyyy-MM-dd
  49. formatter.CONSOLE=org.jboss.logmanager.formatters.PatternFormatter
  50. formatter.CONSOLE.properties=pattern
  51. formatter.CONSOLE.pattern=%K{level}%d{HH\:mm\:ss,SSS} %-5p [%c] (%t) %s%E%n
  52. formatter.FILE=org.jboss.logmanager.formatters.PatternFormatter
  53. formatter.FILE.properties=pattern
  54. formatter.FILE.constructorProperties=pattern
  55. formatter.FILE.pattern=%d{HH\:mm\:ss,SSS} %-5p [%c] (%t) %s%E%n