diff options
author | Olav Morken <olav.morken@uninett.no> | 2009-08-14 11:07:44 +0000 |
---|---|---|
committer | Olav Morken <olav.morken@uninett.no> | 2009-08-14 11:07:44 +0000 |
commit | 3aea3623ee640db54a0e5383e25d352d43aa7c5c (patch) | |
tree | 1cdb44db77f65250ef43a79e3bd13636c9d7a0ca /lib/SimpleSAML/Logger/LoggingHandlerErrorLog.php | |
parent | 3556f998f68bbadba868f0c7bfc03fec956b0a4f (diff) | |
download | simplesamlphp-3aea3623ee640db54a0e5383e25d352d43aa7c5c.zip simplesamlphp-3aea3623ee640db54a0e5383e25d352d43aa7c5c.tar.gz simplesamlphp-3aea3623ee640db54a0e5383e25d352d43aa7c5c.tar.bz2 |
Give default values for all configuration options from config.php
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1665 44740490-163a-0410-bde0-09ae8108e29a
Diffstat (limited to 'lib/SimpleSAML/Logger/LoggingHandlerErrorLog.php')
-rw-r--r-- | lib/SimpleSAML/Logger/LoggingHandlerErrorLog.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SimpleSAML/Logger/LoggingHandlerErrorLog.php b/lib/SimpleSAML/Logger/LoggingHandlerErrorLog.php index 0a9bddb..7b50c48 100644 --- a/lib/SimpleSAML/Logger/LoggingHandlerErrorLog.php +++ b/lib/SimpleSAML/Logger/LoggingHandlerErrorLog.php @@ -29,7 +29,7 @@ class SimpleSAML_Logger_LoggingHandlerErrorLog implements SimpleSAML_Logger_Logg function log_internal($level, $string) {
$config = SimpleSAML_Configuration::getInstance();
assert($config instanceof SimpleSAML_Configuration);
- $processname = $config->getValue('logging.processname','simpleSAMLphp');
+ $processname = $config->getString('logging.processname','simpleSAMLphp');
if(array_key_exists($level, self::$levelNames)) { $levelName = self::$levelNames[$level]; |