1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: ccllogging
- (C) Copyright IBM Corp. 2005, 2018
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
- <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
- <appender name="ipfInternalLoggingFile4CPP" class="org.apache.log4j.RollingFileAppender" addProcID="false">
- <!-- Specify a fully qualified existing path for the log file. If use relative path, it should be relative to <C8 install root>/bin directory. -->
- <param name="File" value="../logs/ipfInternal_cpp.log"/>
- <param name="MaxBackupIndex" value="10"/>
- <param name="MaximumFileSize" value="10485760"/>
- <layout class="org.apache.log4j.PatternLayout">
- <param name="ConversionPattern" value="%d %-5r %-5p [%t] - %m%n"/>
- </layout>
- </appender>
- <appender name="ipfInternalLoggingFile4Java" class="org.apache.log4j.RollingFileAppender" addProcID="false">
- <!-- Specify a fully qualified existing path for the log file. If use relative path, it should be relative to <C8 install root>/bin directory. -->
- <param name="File" value="../logs/ipfInternal_java.log"/>
- <param name="MaxBackupIndex" value="10"/>
- <param name="MaximumFileSize" value="10485760"/>
- <layout class="org.apache.log4j.PatternLayout">
- <param name="ConversionPattern" value="%d %-5r %-5p [%t] - %m%n"/>
- </layout>
- </appender>
- <appender name="ipfInternalLoggingFile4CPP_Debug" class="org.apache.log4j.RollingFileAppender" addProcID="true">
- <!-- Specify a fully qualified existing path for the log file. If use relative path, it should be relative to <C8 install root>/bin directory. -->
- <param name="File" value="../logs/ipfInternalDbg_cpp.log"/>
- <param name="MaxBackupIndex" value="10"/>
- <param name="MaximumFileSize" value="10485760"/>
- <layout class="org.apache.log4j.PatternLayout">
- <param name="ConversionPattern" value="%d %-5r %-5p [%t] - %m%n"/>
- </layout>
- </appender>
- <appender name="ipfInternalLoggingFile4Java_Debug" class="org.apache.log4j.RollingFileAppender" addProcID="true">
- <!-- Specify a fully qualified existing path for the log file. If use relative path, it should be relative to <C8 install root>/bin directory. -->
- <param name="File" value="../logs/ipfInternalDbg_java.log"/>
- <param name="MaxBackupIndex" value="10"/>
- <param name="MaximumFileSize" value="10485760"/>
- <layout class="org.apache.log4j.PatternLayout">
- <param name="ConversionPattern" value="%d %-5r %-5p [%t] - %m%n"/>
- </layout>
- </appender>
-
- <!-- To enable the debug level for IPF internal logging, please comment out the "Default settings" section,
- And enable the "Debug settings" section.
- -->
-
- <!-- Default settings -->
- <category name="CognosIPF.LogLogCPP" class="" additivity="false">
- <level value="error"/>
- <appender-ref ref="ipfInternalLoggingFile4CPP"/>
- </category>
- <category name="CognosIPF.LogLogJava" class="" additivity="false">
- <level value="error"/>
- <appender-ref ref="ipfInternalLoggingFile4Java"/>
- </category>
- <!-- end of Default settings -->
- <!-- Debug settings -->
- <!--category name="CognosIPF.LogLogCPP" class="" additivity="false">
- <level value="debug"/>
- <appender-ref ref="ipfInternalLoggingFile4CPP_Debug"/>
- </category>
- <category name="CognosIPF.LogLogJava" class="" additivity="false">
- <level value="debug"/>
- <appender-ref ref="ipfInternalLoggingFile4Java_Debug"/>
- </category-->
- <!-- end of Debug settings -->
- </log4j:configuration>
|