error.php 2.5 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
  9. | an error occurs, a stack trace, and a snapshot of the source code
  10. | in which the error occured.
  11. |
  12. | If your application is in production, consider turning off error details
  13. | for enhanced security and user experience.
  14. |
  15. */
  16. 'detail' => true,
  17. /*
  18. |--------------------------------------------------------------------------
  19. | Error Logging
  20. |--------------------------------------------------------------------------
  21. |
  22. | Error Logging will use the "logger" function defined below to log error
  23. | messages, which gives you complete freedom to determine how error
  24. | messages are logged. 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 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 your heart desires.
  38. |
  39. | The error "severity" passed to the method is a human-readable severity
  40. | level such as "Parsing Error" or "Fatal Error".
  41. |
  42. */
  43. 'handler' => function($exception, $severity, $message, $config)
  44. {
  45. if ($config['detail'])
  46. {
  47. $data = compact('exception', 'severity', 'message');
  48. $response = Response::view('error.exception', $data)->status(500);
  49. }
  50. else
  51. {
  52. $response = Response::error('500');
  53. }
  54. $response->send();
  55. },
  56. /*
  57. |--------------------------------------------------------------------------
  58. | Error Logger
  59. |--------------------------------------------------------------------------
  60. |
  61. | Because of the various ways of managing error logging, you get complete
  62. | flexibility to manage error logging as you see fit.
  63. |
  64. | This function will be called when an error occurs in your application
  65. | and error loggins is enabled. You can log the error however you like.
  66. |
  67. | A simple logging system has been setup for you. By default, all errors
  68. | will be logged to the storage/log.txt file.
  69. |
  70. */
  71. 'logger' => function($exception, $severity, $message, $config)
  72. {
  73. File::append(STORAGE_PATH.'log.txt', date('Y-m-d H:i:s').' '.$severity.' - '.$message.PHP_EOL);
  74. }
  75. );