Source for file Suppress.php
Documentation is available at Suppress.php
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Suppress.php 20096 2010-01-06 02:05:09Z bkarwin $
* @see Microsoft_AutoLoader
require_once dirname(__FILE__ ) . '/../../AutoLoader.php';
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Suppress.php 20096 2010-01-06 02:05:09Z bkarwin $
* This is a simple boolean filter.
* Call suppress(true) to suppress all log events.
* Call suppress(false) to accept all log events.
* @param boolean $suppress Should all log events be suppressed?
* Returns TRUE to accept the message, FALSE to block it.
* @param array $event event data
* @return boolean accepted?
public function accept($event)
* Create a new instance of Microsoft_Log_Filter_Suppress
* @return Microsoft_Log_Filter_Suppress
* @throws Microsoft_Log_Exception
static public function factory($config)
|