Merge pull request #7011 from nupplaphil/issue/setlogger_fix
authorMichael Vogel <icarus@dabo.de>
Wed, 17 Apr 2019 07:52:55 +0000 (09:52 +0200)
committerGitHub <noreply@github.com>
Wed, 17 Apr 2019 07:52:55 +0000 (09:52 +0200)
SetLogger fix

src/Factory/DependencyFactory.php

index d089c32..aacd155 100644 (file)
@@ -3,6 +3,7 @@
 namespace Friendica\Factory;
 
 use Friendica\App;
+use Friendica\Database\DBA;
 use Friendica\Factory;
 use Friendica\Util\BasePath;
 use Friendica\Util\BaseURL;
@@ -34,6 +35,7 @@ class DependencyFactory
                // needed to call PConfig::init()
                Factory\ConfigFactory::createPConfig($configCache);
                $logger = Factory\LoggerFactory::create($channel, $config, $profiler);
+               DBA::setLogger($logger);
                Factory\LoggerFactory::createDev($channel, $config, $profiler);
                $baseURL = new BaseURL($config, $_SERVER);