marco 2004/03/08 13:23:37
Added: src/tests/renderers/configs LoggerDefaultRenderer.xml
src/tests/renderers test.php
Log:
Initial Import
Revision Changes Path
1.1
logging-log4php/src/tests/renderers/configs/LoggerDefaultRenderer.xml
Index: LoggerDefaultRenderer.xml
===================================================================
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Copyright 2004 The Apache Software Foundation.
This software is published under the terms of the Apache Software
License version 2.0, a copy of which has been included with this
distribution in the LICENSE file.
@author Marco V. <[EMAIL PROTECTED]>
@version $Revision: 1.1 $
@since 0.3
-->
<log4php:configuration xmlns:log4php="http://logging.apache.org/log4php/"
threshold="all" debug="false">
<appender name="default" class="LoggerAppenderEcho">
<layout class="LoggerLayoutHtml">
<param name="locationInfo" value="true" />
</layout>
</appender>
<root>
<level value="debug" />
<appender_ref ref="default" />
</root>
</log4php:configuration>
1.1 logging-log4php/src/tests/renderers/test.php
Index: test.php
===================================================================
<?php
/**
* Copyright 2004 The Apache Software Foundation.
*
* This software is published under the terms of the Apache Software
* License version 2.0, a copy of which has been included with this
* distribution in the LICENSE file.
*
* @package tests
* @author Marco V. <[EMAIL PROTECTED]>
* @subpackage renderers
* @version $Revision: 1.1 $
* @since 0.3
*/
/**
* @var array Test array
*/
$tests = array(
'LoggerDefaultRenderer' => array( 'LOG4PHP_DIR' => null ),
);
require_once('../test_core.php');
?>