| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| # |
| # If we don't know the logging facility, put it into the |
| # turbine.log |
| # |
| log4j.rootLogger = INFO, turbine |
| |
| # |
| # Turbine goes into Turbine Log |
| # |
| log4j.category.org.apache.turbine = INFO, turbine |
| log4j.additivity.org.apache.turbine = false |
| |
| # |
| # Torque has its own log file |
| # |
| log4j.category.org.apache.torque = INFO, torque |
| log4j.additivity.org.apache.torque = false |
| |
| # |
| # Velocity Logfile |
| # |
| log4j.category.velocity = INFO, velocity |
| log4j.additivity.velocity = false |
| |
| # |
| # Avalon Logfile |
| # |
| log4j.category.avalon = INFO, avalon |
| log4j.additivity.avalon = false |
| |
| # |
| # Scheduler Category |
| # |
| log4j.category.scheduler = INFO, scheduler |
| log4j.additivity.scheduler = false |
| |
| # ####################################################################### |
| # |
| # Logfile definitions |
| # |
| # ####################################################################### |
| |
| # |
| # turbine.log |
| # |
| log4j.appender.turbine = org.apache.log4j.FileAppender |
| log4j.appender.turbine.file = ${applicationRoot}/logs/turbine.log |
| log4j.appender.turbine.layout = org.apache.log4j.PatternLayout |
| log4j.appender.turbine.layout.conversionPattern = %d [%t] %-5p %c - %m%n |
| log4j.appender.turbine.append = false |
| |
| # |
| # torque.log |
| # |
| log4j.appender.torque = org.apache.log4j.FileAppender |
| log4j.appender.torque.file = ${applicationRoot}/logs/torque.log |
| log4j.appender.torque.layout = org.apache.log4j.PatternLayout |
| log4j.appender.torque.layout.conversionPattern = %d [%t] %-5p %c - %m%n |
| log4j.appender.torque.append = false |
| |
| # |
| # Scheduler Output |
| # |
| log4j.appender.scheduler = org.apache.log4j.FileAppender |
| log4j.appender.scheduler.file = ${applicationRoot}/logs/scheduler.log |
| log4j.appender.scheduler.layout = org.apache.log4j.PatternLayout |
| log4j.appender.scheduler.layout.conversionPattern = %d [%t] %-5p %c - %m%n |
| log4j.appender.scheduler.append = false |
| |
| # |
| # Velocity gets configured to write its output onto the velocity |
| # category. |
| # |
| log4j.appender.velocity = org.apache.log4j.FileAppender |
| log4j.appender.velocity.file = ${applicationRoot}/logs/velocity.log |
| log4j.appender.velocity.layout = org.apache.log4j.PatternLayout |
| log4j.appender.velocity.layout.conversionPattern = %d [%t] %-5p %c - %m%n |
| log4j.appender.velocity.append = false |
| |
| # |
| # Avalon gets configured to write its output onto the avalon |
| # category. |
| # |
| log4j.appender.avalon = org.apache.log4j.FileAppender |
| log4j.appender.avalon.file = ${applicationRoot}/logs/avalon.log |
| log4j.appender.avalon.layout = org.apache.log4j.PatternLayout |
| log4j.appender.avalon.layout.conversionPattern = %d [%t] %-5p %c - %m%n |
| log4j.appender.avalon.append = false |
| |
| |