# # 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. # Log both a file that would contain "normal" information at INFO level # and another at TRACE (all of the DEBUG) log4j.appender.FILETRACE-${artifactId}=org.apache.log4j.RollingFileAppender log4j.appender.FILETRACE-${artifactId}.Threshold=TRACE log4j.appender.FILETRACE-${artifactId}.layout=org.apache.log4j.PatternLayout log4j.appender.FILETRACE-${artifactId}.layout.ConversionPattern=%d{ISO8601} %-5p [%c{1}] %m%n log4j.appender.FILETRACE-${artifactId}.File=${wink.server.log.dir}/${artifactId}-server-trace.log log4j.appender.FILETRACE-${artifactId}.maxBackupIndex=5 log4j.appender.FILETRACE-${artifactId}.maxFileSize=25MB log4j.appender.FILEINFO-${artifactId}=org.apache.log4j.RollingFileAppender log4j.appender.FILEINFO-${artifactId}.Threshold=INFO log4j.appender.FILEINFO-${artifactId}.layout=org.apache.log4j.PatternLayout log4j.appender.FILEINFO-${artifactId}.layout.ConversionPattern=%d{ISO8601} %-5p [%c{1}] %m%n log4j.appender.FILEINFO-${artifactId}.File=${wink.server.log.dir}/${artifactId}-server-info.log log4j.appender.FILEINFO-${artifactId}.maxBackupIndex=5 log4j.appender.FILEINFO-${artifactId}.maxFileSize=10MB log4j.logger.org.apache.wink=TRACE, FILEINFO-${artifactId}, FILETRACE-${artifactId}