error.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. $data = compact('exception', 'severity', 'message');
  46. $data['detailed'] = $config['detail'];
  47. Response::error('500', $data)->send();
  48. },
  49. /*
  50. |--------------------------------------------------------------------------
  51. | Error Logger
  52. |--------------------------------------------------------------------------
  53. |
  54. | Because of the various ways of managing error logging, you get complete
  55. | flexibility to manage error logging as you see fit.
  56. |
  57. | This function will be called when an error occurs in your application
  58. | and error loggins is enabled. You can log the error however you like.
  59. |
  60. | A simple logging system has been setup for you. By default, all errors
  61. | will be logged to the storage/log.txt file.
  62. |
  63. */
  64. 'logger' => function($exception, $severity, $message, $config)
  65. {
  66. File::append(STORAGE_PATH.'log.txt', date('Y-m-d H:i:s').' '.$severity.' - '.$message.PHP_EOL);
  67. }
  68. );