source: gs3-extensions/pharos/trunk/web/WEB-INF/classes/log4j.properties.in@ 20988

Last change on this file since 20988 was 20988, checked in by davidb, 14 years ago

Additional configuratino on .in files

File size: 2.2 KB
Line 
1#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
19
20# Set root category priority to INFO and its only appender to CONSOLE.
21log4j.rootCategory=INFO, CONSOLE
22#log4j.rootCategory=INFO, CONSOLE, LOGFILE
23
24# Set the enterprise logger priority to FATAL
25log4j.logger.org.apache.axis2.enterprise=FATAL
26log4j.logger.de.hunsicker.jalopy.io=FATAL
27log4j.logger.httpclient.wire.header=FATAL
28log4j.logger.org.apache.commons.httpclient=FATAL
29
30# CONSOLE is set to be a ConsoleAppender using a PatternLayout.
31log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
32log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
33log4j.appender.CONSOLE.layout.ConversionPattern=[%p] %m%n
34
35# LOGFILE is set to be a File appender using a PatternLayout.
36log4j.appender.LOGFILE=org.apache.log4j.FileAppender
37log4j.appender.LOGFILE.File=axis2.log
38log4j.appender.LOGFILE.Append=true
39log4j.appender.LOGFILE.layout=org.apache.log4j.PatternLayout
40log4j.appender.LOGFILE.layout.ConversionPattern=%d [%t] %-5p %c %x - %m%n
41
42
43# CBSE logging
44log4j.logger.eu.pharos.kmi.cbse=ALL,CBSEFILE
45log4j.appender.CBSEFILE=org.apache.log4j.RollingFileAppender
46log4j.appender.CBSEFILE.maxFileSize=100MB
47log4j.appender.CBSEFILE.maxBackupIndex=5
48log4j.appender.CBSEFILE.File=@tomcathome@/logs/CBSE.log
49log4j.appender.CBSEFILE.Append=true
50log4j.appender.CBSEFILE.threshold=all
51log4j.appender.CBSEFILE.layout=org.apache.log4j.PatternLayout
52log4j.appender.CBSEFILE.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} <%-5p> [%t] %-15.15c{1} (%-.15x) - %m%n
Note: See TracBrowser for help on using the repository browser.