README 470 B

123456789101112131415161718192021222324
  1. Log cache access
  2. Adds "Cache MISS, Cache HIT, set cache value, delete cache value" etc.
  3. information to the log file.
  4. Note: entries are logged at the LOG_INFO level.
  5. Installation
  6. ============
  7. add "addPlugin('CacheLog');"
  8. to the bottom of your config.php
  9. Settings
  10. ========
  11. none
  12. Example
  13. =======
  14. Note that since most caching plugins return false for StartCache*
  15. methods, you should add this plugin before them, i.e.
  16. addPlugin('CacheLog');
  17. addPlugin('XCache');