error.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 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.
  35. |
  36. | This function will be called when an error occurs in your application.
  37. | You can log the error however you like.
  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. | A simple logging system has been setup for you. By default, all errors
  43. | will be logged to the application/log.txt file.
  44. |
  45. */
  46. 'logger' => function($severity, $message)
  47. {
  48. File::append(STORAGE_PATH.'log.txt', date('Y-m-d H:i:s').' '.$severity.' - '.$message.PHP_EOL);
  49. },
  50. );