diff options
author | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-05-13 22:48:54 +0200 |
---|---|---|
committer | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-05-13 22:48:54 +0200 |
commit | f333f6b38f985c40247f7c82dd462f3016611dfe (patch) | |
tree | 80d7b1eed242e46af01cba658313703428ccb699 /utility/config.php | |
parent | b9de58c0c9da63f6a489df416df1819a40cb507d (diff) |
fix js tests
Diffstat (limited to 'utility/config.php')
-rw-r--r-- | utility/config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utility/config.php b/utility/config.php index fc7bd788e..1e2719818 100644 --- a/utility/config.php +++ b/utility/config.php @@ -152,7 +152,7 @@ class Config { $configValues = parse_ini_string($content); if($configValues === false || count($configValues) === 0) { - $this->logger->warn('Configuration invalid. Ignoring values.', + $this->logger->warning('Configuration invalid. Ignoring values.', $this->loggerParams); } else { @@ -162,7 +162,7 @@ class Config { settype($value, $type); $this->$key = $value; } else { - $this->logger->warn('Configuration value "' . $key . + $this->logger->warning('Configuration value "' . $key . '" does not exist. Ignored value.' , $this->loggerParams); } } |