Author: grobmeier
Date: Sun May 24 13:14:40 2009
New Revision: 778139

URL: http://svn.apache.org/viewvc?rev=778139&view=rev
Log:
replaced undefined var with correct var

Modified:
    incubator/log4php/trunk/src/main/php/configurators/LoggerConfiguratorPhp.php

Modified: 
incubator/log4php/trunk/src/main/php/configurators/LoggerConfiguratorPhp.php
URL: 
http://svn.apache.org/viewvc/incubator/log4php/trunk/src/main/php/configurators/LoggerConfiguratorPhp.php?rev=778139&r1=778138&r2=778139&view=diff
==============================================================================
--- 
incubator/log4php/trunk/src/main/php/configurators/LoggerConfiguratorPhp.php 
(original)
+++ 
incubator/log4php/trunk/src/main/php/configurators/LoggerConfiguratorPhp.php 
Sun May 24 13:14:40 2009
@@ -71,7 +71,7 @@
                
                // set threshold
                if(isset($config['threshold'])) {
-                       
$hierarchy->setThreshold(LoggerOptionConverter::toLevel($thresholdStr, 
LoggerLevel::getLevelAll()));
+                       
$hierarchy->setThreshold(LoggerOptionConverter::toLevel($config['threshold'], 
LoggerLevel::getLevelAll()));
                }
                
                // parse and create appenders


Reply via email to