You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
3.0 KiB
100 lines
3.0 KiB
13 years ago
|
<?php
|
||
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
12 years ago
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
13 years ago
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
|
namespace yii\logging;
|
||
|
|
||
12 years ago
|
use Yii;
|
||
|
use yii\base\Component;
|
||
|
use yii\base\Application;
|
||
|
|
||
13 years ago
|
/**
|
||
|
* Router manages [[Target|log targets]] that record log messages in different media.
|
||
|
*
|
||
|
* For example, a [[FileTarget|file log target]] records log messages
|
||
|
* in files; an [[EmailTarget|email log target]] sends log messages
|
||
|
* to specific email addresses. Each log target may specify filters on
|
||
|
* message levels and categories to record specific messages only.
|
||
|
*
|
||
|
* Router and the targets it manages may be configured in application configuration,
|
||
|
* like the following:
|
||
|
*
|
||
|
* ~~~
|
||
|
* array(
|
||
|
* // preload log component when application starts
|
||
|
* 'preload' => array('log'),
|
||
|
* 'components' => array(
|
||
|
* 'log' => array(
|
||
12 years ago
|
* 'class' => 'yii\logging\Router',
|
||
13 years ago
|
* 'targets' => array(
|
||
|
* 'file' => array(
|
||
12 years ago
|
* 'class' => 'yii\logging\FileTarget',
|
||
|
* 'levels' => array('trace', 'info'),
|
||
|
* 'categories' => array('yii\*'),
|
||
13 years ago
|
* ),
|
||
|
* 'email' => array(
|
||
12 years ago
|
* 'class' => 'yii\logging\EmailTarget',
|
||
|
* 'levels' => array('error', 'warning'),
|
||
13 years ago
|
* 'emails' => array('admin@example.com'),
|
||
|
* ),
|
||
|
* ),
|
||
|
* ),
|
||
|
* ),
|
||
|
* )
|
||
|
* ~~~
|
||
|
*
|
||
|
* Each log target can have a name and can be referenced via the [[targets]] property
|
||
|
* as follows:
|
||
|
*
|
||
|
* ~~~
|
||
12 years ago
|
* Yii::$app->log->targets['file']->enabled = false;
|
||
13 years ago
|
* ~~~
|
||
|
*
|
||
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
12 years ago
|
class Router extends Component
|
||
13 years ago
|
{
|
||
13 years ago
|
/**
|
||
13 years ago
|
* @var Target[] list of log target objects or configurations. If the latter, target objects will
|
||
12 years ago
|
* be created in [[init()]] by calling [[Yii::createObject()]] with the corresponding object configuration.
|
||
13 years ago
|
*/
|
||
13 years ago
|
public $targets = array();
|
||
13 years ago
|
|
||
|
/**
|
||
|
* Initializes this application component.
|
||
|
* This method is invoked when the Router component is created by the application.
|
||
12 years ago
|
* The method attaches the [[processLogs]] method to both the [[Logger::EVENT_FLUSH]] event
|
||
|
* and the [[Logger::EVENT_FINAL_FLUSH]] event.
|
||
13 years ago
|
*/
|
||
|
public function init()
|
||
|
{
|
||
|
parent::init();
|
||
13 years ago
|
foreach ($this->targets as $name => $target) {
|
||
|
if (!$target instanceof Target) {
|
||
12 years ago
|
$this->targets[$name] = Yii::createObject($target);
|
||
13 years ago
|
}
|
||
|
}
|
||
12 years ago
|
Yii::getLogger()->router = $this;
|
||
13 years ago
|
}
|
||
|
|
||
|
/**
|
||
12 years ago
|
* Dispatches log messages to [[targets]].
|
||
|
* This method is called by [[Logger]] when its [[Logger::flush()]] method is called.
|
||
|
* It will forward the messages to each log target registered in [[targets]].
|
||
|
* @param array $messages the messages to be processed
|
||
|
* @param boolean $final whether this is the final call during a request cycle
|
||
13 years ago
|
*/
|
||
12 years ago
|
public function dispatch($messages, $final = false)
|
||
13 years ago
|
{
|
||
13 years ago
|
foreach ($this->targets as $target) {
|
||
13 years ago
|
if ($target->enabled) {
|
||
12 years ago
|
$target->collect($messages, $final);
|
||
13 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|