Skip to content
Snippets Groups Projects
Commit cc42412e authored by Prasad's avatar Prasad
Browse files

Fixes #1646: Missing configure method added in default log4php

parent 1e9f078a
No related branches found
No related tags found
No related merge requests found
......@@ -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
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment