You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/demos/Zend/Wildfire/application/controllers/ZendLogWriterFirebugControl...

80 lines
2.7 KiB
PHP

<?php
/**
* Zend Framework
*
* LICENSE
*
* 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.
*
* @category Zend
* @package Zend_Wildfire
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
/** Zend_Controller_Action */
require_once 'Zend/Controller/Action.php';
/**
* Tests for Zend_Log_Writer_Firebug
*
* @category Zend
* @package Zend_Wildfire
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class ZendLogWriterFirebugController extends Zend_Controller_Action
{
public function testloggingAction()
{
$logger = Zend_Registry::get('logger');
$logger->log('Emergency: system is unusable', Zend_Log::EMERG);
$logger->log('Alert: action must be taken immediately', Zend_Log::ALERT);
$logger->log('Critical: critical conditions', Zend_Log::CRIT);
$logger->log('Error: error conditions', Zend_Log::ERR);
$logger->log('Warning: warning conditions', Zend_Log::WARN);
$logger->log('Notice: normal but significant condition', Zend_Log::NOTICE);
$logger->log('Informational: informational messages', Zend_Log::INFO);
$logger->log('Debug: debug messages', Zend_Log::DEBUG);
$logger->log(array('$_SERVER',$_SERVER), Zend_Log::DEBUG);
$logger->trace('Trace to here');
$table = array('Summary line for the table',
array(
array('Column 1', 'Column 2'),
array('Row 1 c 1',' Row 1 c 2'),
array('Row 2 c 1',' Row 2 c 2')
)
);
$logger->table($table);
}
public function testerrorcontrollerAction()
{
require_once 'Zend/Exception.php';
throw new Zend_Exception('Test Exception');
}
public function testlargemessageAction()
{
$message = array();
for ( $i=0 ; $i<300 ; $i++ ) {
$message[] = 'This is message #' . $i;
}
$logger = Zend_Registry::get('logger');
$logger->log($message, Zend_Log::INFO);
}
}