Set up logging in EmbeddedWeb

This commit is contained in:
Eric Lippmann 2015-11-27 16:39:19 +01:00
parent 59b540cc12
commit e7262b7d14

View File

@ -20,7 +20,7 @@ use Icinga\Web\Response;
class EmbeddedWeb extends ApplicationBootstrap class EmbeddedWeb extends ApplicationBootstrap
{ {
/** /**
* Request object * Request
* *
* @var Request * @var Request
*/ */
@ -57,6 +57,7 @@ class EmbeddedWeb extends ApplicationBootstrap
* Embedded bootstrap parts * Embedded bootstrap parts
* *
* @see ApplicationBootstrap::bootstrap * @see ApplicationBootstrap::bootstrap
*
* @return $this * @return $this
*/ */
protected function bootstrap() protected function bootstrap()
@ -65,6 +66,8 @@ class EmbeddedWeb extends ApplicationBootstrap
->setupZendAutoloader() ->setupZendAutoloader()
->setupErrorHandling() ->setupErrorHandling()
->loadConfig() ->loadConfig()
->setupLogging()
->setupLogger()
->setupRequest() ->setupRequest()
->setupResponse() ->setupResponse()
->setupTimezone() ->setupTimezone()