error.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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 errors, you get complete freedom
  34. | to manage errors as you desire. Any error that occurs in your application
  35. | will be sent to this Closure.
  36. |
  37. | By default, when error detail is disabled, a generic error page will be
  38. | rendered by the handler. After this handler is complete, the framework
  39. | will stop processing the request and "exit" will be called.
  40. |
  41. */
  42. 'handler' => function($exception, $config)
  43. {
  44. if ( ! $config['detail'])
  45. {
  46. Response::error('500')->send();
  47. }
  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. This function will
  56. | be called anytime an error occurs within your application and error
  57. | logging is enabled.
  58. |
  59. | You may log the error message however you like; however, a simple log
  60. | solution has been setup for you which will log all error messages to
  61. | a single text file within the application storage directory.
  62. |
  63. | Of course, you are free to implement more complex solutions including
  64. | e-mailing the exceptions details to your team, etc.
  65. |
  66. */
  67. 'logger' => function($exception, $config)
  68. {
  69. $message = date('Y-m-d H:i:s').' - '.$exception->getMessage().PHP_EOL;
  70. File::append(STORAGE_PATH.'log.txt', $message);
  71. }
  72. );