You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ih...@apache.org on 2014/04/11 12:46:10 UTC

git commit: Fix mismatched function signature and function call

Repository: logging-log4php
Updated Branches:
  refs/heads/develop 6933190b9 -> 41adb9984


Fix mismatched function signature and function call

Signed-off-by: Ivan Habunek <ih...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/logging-log4php/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4php/commit/41adb998
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4php/tree/41adb998
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4php/diff/41adb998

Branch: refs/heads/develop
Commit: 41adb99845f1df32a7a73d4389714b27d9134826
Parents: 6933190
Author: Dan Rowe <dr...@gmail.com>
Authored: Thu Apr 10 11:18:43 2014 -0400
Committer: Ivan Habunek <ih...@apache.org>
Committed: Fri Apr 11 12:45:52 2014 +0200

----------------------------------------------------------------------
 src/main/php/configurators/LoggerConfiguratorDefault.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4php/blob/41adb998/src/main/php/configurators/LoggerConfiguratorDefault.php
----------------------------------------------------------------------
diff --git a/src/main/php/configurators/LoggerConfiguratorDefault.php b/src/main/php/configurators/LoggerConfiguratorDefault.php
index c708b70..e64412a 100644
--- a/src/main/php/configurators/LoggerConfiguratorDefault.php
+++ b/src/main/php/configurators/LoggerConfiguratorDefault.php
@@ -426,7 +426,7 @@ class LoggerConfiguratorDefault implements LoggerConfigurator
 		// Set logger additivity
 		if (isset($config['additivity'])) {
 			try {
-				$additivity = LoggerOptionConverter::toBooleanEx($config['additivity'], null);
+				$additivity = LoggerOptionConverter::toBooleanEx($config['additivity']);
 				$logger->setAdditivity($additivity);
 			} catch (Exception $ex) {
 				$this->warn("Invalid additivity value [{$config['additivity']}] specified for logger [$loggerName]. Ignoring additivity setting.");