PHP Classes

File: ANYEM_CLIENT/config/log4php/config.xml

Recommend this page to a friend!
  Classes of Anis Halayem   Anyem   ANYEM_CLIENT/config/log4php/config.xml   Download  
File: ANYEM_CLIENT/config/log4php/config.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Anyem
Exchange variable values between PHP servers
Author: By
Last change:
Date: 8 years ago
Size: 777 bytes
 

Contents

Class file image Download
<configuration xmlns="http://logging.apache.org/log4php/"> <appender name="myConsoleAppender" class="LoggerAppenderConsole"> <layout class="LoggerLayoutPattern"> <param name="conversionPattern" value="%date{Y-m-d H:i:s,u} [%logger](%L) %message%newline" /> </layout> </appender> <appender name="myAppender" class="LoggerAppenderFile"> <layout class="LoggerLayoutPattern"> <param name="conversionPattern" value="%date [%logger] %message%newline" /> </layout> <param name="file" value="anyem.client.log" /> </appender> <root> <level value="INFO" /> <appender_ref ref="myAppender" /> <appender_ref ref="myConsoleAppender" /> </root> </configuration>