mysterious-pencil-76046
08/30/2021, 11:22 AMdocker:
debug:
enabled:false
followed by booting the env and restarting it, it still shows the stacktrace in case of a 500 internal server error for example.
Whats the trick?purple-coat-90835
08/30/2021, 11:36 AMmysterious-pencil-76046
08/30/2021, 11:41 AMaverage-branch-45579
08/30/2021, 11:43 AMFailWhale
$config[ErrorHandlerConstants::ERROR_RENDERER] = WebHtmlErrorRenderer::class;
Exception
$config[ErrorHandlerConstants::DISPLAY_ERRORS] = true;
$config[ErrorHandlerConstants::ERROR_RENDERER] = WebExceptionErrorRenderer::class;
mysterious-pencil-76046
08/30/2021, 11:47 AMaverage-branch-45579
08/30/2021, 11:49 AMmysterious-pencil-76046
08/30/2021, 11:50 AMmysterious-pencil-76046
08/30/2021, 11:51 AMaverage-branch-45579
08/30/2021, 11:52 AMmysterious-pencil-76046
08/30/2021, 11:53 AMmysterious-pencil-76046
08/30/2021, 12:26 PMconfig/Shared/config_default-docker.dev.php
I set the following values
$config[ApplicationConstants::ENABLE_APPLICATION_DEBUG]
= $config[ShopApplicationConstants::ENABLE_APPLICATION_DEBUG]
= false;
$config[GlueApplicationConstants::GLUE_APPLICATION_REST_DEBUG] = false;
$config[ErrorHandlerConstants::DISPLAY_ERRORS] = false;
$config[ErrorHandlerConstants::ERROR_RENDERER] = WebHtmlErrorRenderer::class;
$config[ErrorHandlerConstants::IS_PRETTY_ERROR_HANDLER_ENABLED] = false;
and I forced an error in both GlueBootstrap.php and YvesBootstrap.php by instantiating a not existing class new Foo();
What Yves (correctly) did:
⢠showing the FailWhale
What Glue did:
Error - Exception: Class 'Spryker\Glue\GlueApplication\Bootstrap\Foo' not found
in /data/vendor/spryker/glue-application/src/Spryker/Glue/GlueApplication/Bootstrap/AbstractGlueBootstrap.php (48)
Request URI: /return-reasons
Trace:
#0 /data/public/Glue/index.php(17): Spryker\Glue\GlueApplication\Bootstrap\AbstractGlueBootstrap->__construct()
#1 {main}
What I expect Glue has to do:
⢠showing some information that an error occured
⢠not showing information about the underlying systemaverage-branch-45579
08/30/2021, 12:33 PMmysterious-pencil-76046
08/30/2021, 12:36 PMaverage-branch-45579
09/06/2021, 8:14 AMmysterious-pencil-76046
09/06/2021, 8:28 AMmysterious-pencil-76046
09/06/2021, 8:51 AM