From 507f5deb515e30ab8c9d47fd4beaa262cec2e3f4 Mon Sep 17 00:00:00 2001 From: kevin_fourie Date: Tue, 31 Jul 2007 10:19:27 +0000 Subject: [PATCH] KTS-2234 "PHP error log does not consider log level" Fixed. --- config/dmsDefaults.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/dmsDefaults.php b/config/dmsDefaults.php index 3764c0b..f10811a 100644 --- a/config/dmsDefaults.php +++ b/config/dmsDefaults.php @@ -122,7 +122,7 @@ class KTInit { $default->phpErrorLog =& Log::factory('composite'); if ($default->phpErrorLogFile) { - $fileLog =& Log::factory('file', $oKTConfig->get('urls/logDirectory') . '/php_error_log', 'KT'); + $fileLog =& Log::factory('file', $oKTConfig->get('urls/logDirectory') . '/php_error_log', 'KT', array(), $logLevel); $default->phpErrorLog->addChild($fileLog); } -- libgit2 0.21.4