error.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 Logger
  31. |--------------------------------------------------------------------------
  32. |
  33. | Because of the various ways of managing error logging, you get complete
  34. | flexibility to manage error logging as you see fit. This function will
  35. | be called anytime an error occurs within your application and error
  36. | logging is enabled.
  37. |
  38. | You may log the error message however you like; however, a simple log
  39. | solution has been setup for you which will log all error messages to
  40. | a single text file within the application storage directory.
  41. |
  42. | Of course, you are free to implement more complex solutions including
  43. | e-mailing the exceptions details to your team, etc.
  44. |
  45. */
  46. 'logger' => function($e, $config)
  47. {
  48. $format = '%s | Message: %s | File: %s | Line: %s';
  49. $message = sprintf($format, date('Y-m-d H:i:s'), $e->getMessage(), $e->getFile(), $e->getLine());
  50. File::append(STORAGE_PATH.'log.txt', $message.PHP_EOL);
  51. }
  52. );