README 417 B

123456789101112131415161718192021
  1. The LogFilter plugin provides server-side setting to filter log output by type or keyword.
  2. Installation
  3. ============
  4. add "addPlugin('LogFilter');"
  5. to the bottom of your config.php
  6. Settings
  7. ========
  8. none
  9. Example
  10. =======
  11. Disable all debug messages and those containing 'About to push':
  12. addPlugin('LogFilter', array(
  13. 'priority' => array(LOG_DEBUG => false),
  14. 'regex' => array('/About to push/' => false)
  15. ));