You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4php-dev@logging.apache.org by gr...@apache.org on 2009/05/24 16:14:39 UTC

svn commit: r778154 - /incubator/log4php/trunk/src/test/php/configurators/test1.php

Author: grobmeier
Date: Sun May 24 14:14:39 2009
New Revision: 778154

URL: http://svn.apache.org/viewvc?rev=778154&view=rev
Log:
added loggers

Modified:
    incubator/log4php/trunk/src/test/php/configurators/test1.php

Modified: incubator/log4php/trunk/src/test/php/configurators/test1.php
URL: http://svn.apache.org/viewvc/incubator/log4php/trunk/src/test/php/configurators/test1.php?rev=778154&r1=778153&r2=778154&view=diff
==============================================================================
--- incubator/log4php/trunk/src/test/php/configurators/test1.php (original)
+++ incubator/log4php/trunk/src/test/php/configurators/test1.php Sun May 24 14:14:39 2009
@@ -23,6 +23,12 @@
         'level' => 'WARN',
         'appenders' => array('default'),
      ),
+     'loggers' => array(
+           'mylogger' => array(
+               'level' => 'INFO',
+               'appenders' => array('default'),
+           ),
+ 	 ),
      'appenders' => array(
          'default' => array(
              'class' => 'LoggerAppenderEcho',