Provides Plugin.ConsoleFilters plugin class.
This plugin adds the ability to control which Console entries display by filtering on category and source. Two groups of checkboxes are added to the Console footer, one for categories and the other for sources. Only those messages that match a checked category or source are displayed.
Map of entry categories to their visibility status. Update a * particular category's visibility by setting the subattribute to true * (visible) or false (hidden).
For example, yconsole.filter.set('category.info', false) to hide * log entries with the category/logLevel of 'info'.
Similarly, yconsole.filter.get('category.warn') will return a * boolean indicating whether that category is currently being included * in the UI.
Unlike the YUI instance configuration's logInclude and logExclude * properties, filtered entries are only hidden from the UI, but * can be made visible again.
Map of entry sources to their visibility status. Update a * particular sources's visibility by setting the subattribute to true * (visible) or false (hidden).
For example, yconsole.filter.set('sources.slider', false) to hide * log entries originating from Y.Slider.