error.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Error Detail
  6. |--------------------------------------------------------------------------
  7. |
  8. | Detailed error messages contain information about the file in which an
  9. | error occurs, as well as a PHP stack trace containing the call stack.
  10. |
  11. | If your application is in production, consider turning off error details
  12. | for enhanced security and user experience. The error stack trace could
  13. | contain sensitive information that should not be publicly visible.
  14. |
  15. */
  16. 'detail' => true,
  17. /*
  18. |--------------------------------------------------------------------------
  19. | Error Logging
  20. |--------------------------------------------------------------------------
  21. |
  22. | When error logging is enabled, the "logger" Closure defined below will
  23. | be called for every error in your application. You are free to log the
  24. | errors however you want. Enjoy the flexibility.
  25. |
  26. */
  27. 'log' => false,
  28. /*
  29. |--------------------------------------------------------------------------
  30. | Error Handler
  31. |--------------------------------------------------------------------------
  32. |
  33. | Because of the various ways of managing error logging, you get complete
  34. | flexibility in Laravel to manage all error logging as you see fit.
  35. |
  36. | This function will be called when an error occurs in your application.
  37. | You are free to handle the exception any way you want. The severity
  38. | will be a human-readable severity level such as "Parsing Error".
  39. |
  40. */
  41. 'handler' => function($exception, $severity, $message, $config)
  42. {
  43. if ($config['detail'])
  44. {
  45. $data = compact('exception', 'severity', 'message');
  46. $response = Response::view('error.exception', $data)->status(500);
  47. }
  48. else
  49. {
  50. $response = Response::error('500');
  51. }
  52. $response->send();
  53. },
  54. /*
  55. |--------------------------------------------------------------------------
  56. | Error Logger
  57. |--------------------------------------------------------------------------
  58. |
  59. | Because of the various ways of managing error logging, you get complete
  60. | flexibility to manage error logging as you see fit. This function will
  61. | be called anytime an error occurs within your application and error
  62. | logging is enabled.
  63. |
  64. | You may log the error message however you like; however, a simple logging
  65. | solution has been setup for you which will log all error messages to a
  66. | single text file within the application storage directory.
  67. |
  68. */
  69. 'logger' => function($exception, $severity, $message, $config)
  70. {
  71. $message = date('Y-m-d H:i:s').' '.$severity.' - '.$message.PHP_EOL;
  72. File::append(STORAGE_PATH.'log.txt', $message);
  73. }
  74. );