mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			97 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			3.0 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.DailyRollingFileAppender">
 | |
|       <param name="File" value="/var/log/vmops/vmops-testcase.log"/>
 | |
|       <param name="Append" value="true"/>
 | |
|       <param name="Threshold" value="INFO"/>
 | |
| 
 | |
|       <!-- Rollover at midnight each day -->
 | |
|       <param name="DatePattern" value="'.'yyyy-MM-dd"/>
 | |
| 
 | |
|       <layout class="org.apache.log4j.PatternLayout">
 | |
|          <param name="ConversionPattern" value="%d %-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="INFO"/>
 | |
| 
 | |
|       <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.vmops.utils.db">
 | |
|       <priority value="DEBUG"/>
 | |
|    </category>
 | |
| 
 | |
|    <category name="com.vmops.utils.db.Transaction.Transaction">
 | |
|       <priority value="TRACE"/>
 | |
|    </category>
 | |
| 
 | |
|    <category name="com.vmops">
 | |
|      <priority value="TRACE"/>
 | |
|    </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>
 |