diff --git a/libraries/log4php/Logger.php b/libraries/log4php/Logger.php
index 042c7b0541d1fe45b61e3533c8fcfc6a6b1b05e6..c50568a591656a596db56d543e3af42b386f53d8 100644
--- a/libraries/log4php/Logger.php
+++ b/libraries/log4php/Logger.php
@@ -9,6 +9,7 @@
  *************************************************************************************/
 
 /** Classes to avoid logging */
+include_once dirname(__FILE__) . '/LoggerPropertyConfigurator.php';
 
 /**
  * Core logging class.
@@ -99,6 +100,10 @@ class Logger {
 		$configinfo = LoggerPropertyConfigurator::getInstance()->getConfigInfo($name);
 		return new Logger($name, $configinfo);
 	}
+
+	static function configure($config) {
+		// Do nothing
+	}
 }
 
 /**
@@ -128,4 +133,4 @@ class LoggerAppenderFile {
 	}	
 	
 }
-?>
\ No newline at end of file
+?>