error.php 791 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Error Handler
  6. |--------------------------------------------------------------------------
  7. |
  8. | Because of the various ways of managing error logging, you get complete
  9. | flexibility to manage error logging as you see fit.
  10. |
  11. | This function will be called when an error occurs in your application.
  12. | You can log the error however you like.
  13. |
  14. | The error "severity" passed to the method is a human-readable severity
  15. | level such as "Parsing Error" or "Fatal Error".
  16. |
  17. | A simple logging system has been setup for you. By default, all errors
  18. | will be logged to the storage/log.txt file.
  19. |
  20. */
  21. 'handler' => function($exception)
  22. {
  23. var_dump($exception);
  24. exit(1);
  25. },
  26. );