mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			102 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="UTF-8"?>
 | 
						|
<!--
 | 
						|
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.
 | 
						|
-->
 | 
						|
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
 | 
						|
 | 
						|
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
 | 
						|
 | 
						|
   <!-- ================================= -->
 | 
						|
   <!-- Preserve messages in a local file -->
 | 
						|
   <!-- ================================= -->
 | 
						|
 | 
						|
   <!-- A time/date based rolling appender -->
 | 
						|
   <appender name="FILE" class="org.apache.log4j.rolling.RollingFileAppender">
 | 
						|
      <param name="Append" value="true"/>
 | 
						|
      <param name="Threshold" value="WARN"/>
 | 
						|
      <rollingPolicy class="org.apache.log4j.rolling.TimeBasedRollingPolicy">
 | 
						|
        <param name="FileNamePattern" value="@CPLOG@.%d{yyyy-MM-dd}.gz"/>
 | 
						|
        <param name="ActiveFileName" value="@CPLOG@"/>
 | 
						|
      </rollingPolicy>
 | 
						|
      <layout class="org.apache.log4j.EnhancedPatternLayout">
 | 
						|
         <param name="ConversionPattern" value="%d{ISO8601} %-5p [%c{3}] (%t:%x) %m%n"/>
 | 
						|
      </layout>
 | 
						|
   </appender>
 | 
						|
   
 | 
						|
   <!-- ============================== -->
 | 
						|
   <!-- Append messages to the console -->
 | 
						|
   <!-- ============================== -->
 | 
						|
 | 
						|
   <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
 | 
						|
      <param name="Target" value="System.out"/>
 | 
						|
      <param name="Threshold" value="WARN"/>
 | 
						|
 | 
						|
      <layout class="org.apache.log4j.PatternLayout">
 | 
						|
         <param name="ConversionPattern" value="%d{ABSOLUTE} %5p %c{1}:%L - %m%n"/>
 | 
						|
      </layout>
 | 
						|
   </appender>
 | 
						|
 | 
						|
   <!-- ================ -->
 | 
						|
   <!-- Limit categories -->
 | 
						|
   <!-- ================ -->
 | 
						|
 | 
						|
   <category name="com.cloud.console.ConsoleCanvas">
 | 
						|
     <priority value="WARN"/>
 | 
						|
   </category>
 | 
						|
   
 | 
						|
   <category name="com.cloud.consoleproxy.ConsoleProxyAjaxImageHandler">
 | 
						|
     <priority value="WARN"/>
 | 
						|
   </category>
 | 
						|
   
 | 
						|
   <category name="com.cloud.consoleproxy.ConsoleProxyViwer">
 | 
						|
     <priority value="WARN"/>
 | 
						|
   </category>
 | 
						|
 | 
						|
   <category name="com.cloud.consoleproxy">
 | 
						|
     <priority value="INFO"/>
 | 
						|
   </category>
 | 
						|
 | 
						|
   <category name="com.cloud">
 | 
						|
     <priority value="DEBUG"/>
 | 
						|
   </category>
 | 
						|
   
 | 
						|
   <!-- Limit the org.apache category to INFO as its DEBUG is verbose -->
 | 
						|
   <category name="org.apache">
 | 
						|
      <priority value="INFO"/>
 | 
						|
   </category>
 | 
						|
 | 
						|
   <category name="org">
 | 
						|
      <priority value="INFO"/>
 | 
						|
   </category>
 | 
						|
   
 | 
						|
   <category name="net">
 | 
						|
     <priority value="INFO"/>
 | 
						|
   </category>
 | 
						|
 | 
						|
   <!-- ======================= -->
 | 
						|
   <!-- Setup the Root category -->
 | 
						|
   <!-- ======================= -->
 | 
						|
 | 
						|
   <root>
 | 
						|
      <level value="INFO"/>
 | 
						|
      <appender-ref ref="CONSOLE"/>
 | 
						|
      <appender-ref ref="FILE"/>
 | 
						|
   </root>
 | 
						|
 | 
						|
</log4j:configuration>
 |