Fix fatal error when using Logger::devLog

- Error message is "Call to a member function log() on null in src/Core/Logger.php:304"
This commit is contained in:
Hypolite Petovan 2019-03-10 22:19:12 -04:00
parent 7b91c26c31
commit 579d42a215
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);
}