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

Fixes #1646: property instance initialization

parent cc42412e
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,6 @@ class LoggerPropertyConfigurator {
static $singleton = false;
function __construct() {
LoggerPropertyConfigurator::$singleton = $this;
}
function configure($configfile) {
......@@ -59,6 +58,7 @@ class LoggerPropertyConfigurator {
}
static function getInstance() {
if (!self::$singleton) self::$singleton = new static();
return self::$singleton;
}
}
......
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