Merge pull request #6850 from MrPetovan/bug/fatal-errors

Fix fatal error when using Logger::devLog
This commit is contained in:
Tobias Diekershoff 2019-03-11 06:00:51 +01:00 committed by GitHub
commit d311f99a2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ class DependencyFactory
// needed to call PConfig::init()
Factory\ConfigFactory::createPConfig($configCache);
$logger = Factory\LoggerFactory::create($channel, $config);
Factory\LoggerFactory::createDev($channel, $config);
return new App($basePath, $config, $logger, $profiler, $isBackend);
}