Diogo Cordeiro 25f273328a [PLUGINS] Removed GeoURL as the service doesn't exist anymore hace 5 años
..
locale 25f273328a [PLUGINS] Removed GeoURL as the service doesn't exist anymore hace 5 años
LogFilterModule.php 34bfdc3e91 [CORE] Refactor Plugin API to Module API hace 5 años
README 34bfdc3e91 [CORE] Refactor Plugin API to Module API hace 5 años

README

The LogFilter plugin provides server-side setting to filter log output by type or keyword.

Installation
============
add "addModule('LogFilter');"
to the bottom of your config.php

Settings
========
none

Example
=======
Disable all debug messages and those containing 'About to push':

addModule('LogFilter', array(
'priority' => array(LOG_DEBUG => false),
'regex' => array('/About to push/' => false)
));