1. 18 Jun, 2016 1 commit
  2. 14 Jun, 2016 3 commits
  3. 13 Jun, 2016 4 commits
  4. 05 Jun, 2016 1 commit
  5. 04 Jun, 2016 1 commit
  6. 03 Jun, 2016 1 commit
  7. 01 Jun, 2016 1 commit
  8. 27 May, 2016 8 commits
  9. 26 May, 2016 5 commits
  10. 25 May, 2016 1 commit
  11. 23 May, 2016 3 commits
  12. 20 May, 2016 3 commits
  13. 19 May, 2016 1 commit
  14. 18 May, 2016 6 commits
  15. 17 May, 2016 1 commit
    • Fabien Potencier's avatar
      bug #1354 Adding a flag to disable the Monolog error handler (skalpa) · cb2f3617
      Fabien Potencier authored
      This PR was merged into the 2.0.x-dev branch.
      
      Discussion
      ----------
      
      Adding a flag to disable the Monolog error handler
      
      The monolog error handler can now be disabled by setting the value of the new `monolog.use_error_handler` parameter to false (since it was added in  a53ce590 it was always enabled).
      
      The error handler is disabled by default when the application `debug` parameter is set to true, to ensure it won't silence exceptions and/or errors.
      
      Without the flag, an uncaught exception thrown during boot on `master` will just result in a white page, even when using `debug` and `error_reporting` (because the error handler calls `exit` after logging exceptions).
      
      Commits
      -------
      
      8ecd0f01 Adding the monolog.use_error_handler parameter to configure whether the monolog ErrorHandler should be registered.
      cb2f3617