'The parameter "debug.error_handler.throw_at" must be defined' error after updating to Symfony 2.6

Symfony

Symfony Problem Overview


After updating Symfony with Composer to version 2.6 it gives this error:

> [Symfony\Component\DependencyInjection\Exception\InvalidArgumentException] The parameter "debug.error_handler.throw_at" must be defined.

Symfony Solutions


Solution 1 - Symfony

manualy clear application cache - remove all files in /app/cache: rm -r app/cache/*

and then warmup cache for needed environment like that:

app/console cache:warmup --env=prod

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAlex BelyaevView Question on Stackoverflow
Solution 1 - SymfonyAlex BelyaevView Answer on Stackoverflow