error.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Error Detail
  6. |--------------------------------------------------------------------------
  7. |
  8. | Would you like detailed error messages?
  9. |
  10. | If your application is in production, consider turning off error details
  11. | for enhanced security and user experience.
  12. |
  13. */
  14. 'detail' => false,
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Error Logging
  18. |--------------------------------------------------------------------------
  19. |
  20. | Would you like errors to be logged? Error logging can be extremely
  21. | helpful when debugging a production application.
  22. |
  23. */
  24. 'log' => true,
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Error Logger
  28. |--------------------------------------------------------------------------
  29. |
  30. | Because of the sundry ways of managing error logging, you get complete
  31. | flexibility to manage error logging as you see fit.
  32. |
  33. | This function will be called when an error occurs in your application.
  34. | You can log the error however you like.
  35. |
  36. | The error "severity" passed to the method is a human-readable severity
  37. | level such as "Parsing Error", "Fatal Error", etc.
  38. |
  39. | A simple logging system has been setup for you. By default, all errors
  40. | will be logged to the application/log.txt file.
  41. |
  42. */
  43. 'logger' => function($severity, $message)
  44. {
  45. System\File::append(APP_PATH.'storage/log.txt', date('Y-m-d H:i:s').' '.$severity.' - '.$message.PHP_EOL);
  46. },
  47. );