{
$this->setupContainerForRunningFrontend($request);
+ $this->registerErrorHandler();
+
$this->requestId = $this->container->create(Request::class)->getRequestId();
$this->auth = $this->container->create(Authentication::class);
$this->config = $this->container->create(IManageConfigValues::class);
]);
\Friendica\DI::init($this->container);
+ }
+ private function registerErrorHandler(): void
+ {
\Friendica\Core\Logger\Handler\ErrorHandler::register($this->container->create(LoggerInterface::class));
}