array('log'), * 'components' => array( * 'log' => array( * 'class' => '\yii\logging\Router', * 'targets' => array( * 'file' => array( * 'class' => '\yii\logging\FileTarget', * 'levels' => 'trace, info', * 'categories' => 'yii\*', * ), * 'email' => array( * 'class' => '\yii\logging\EmailTarget', * 'levels' => 'error, warning', * 'emails' => array('admin@example.com'), * ), * ), * ), * ), * ) * ~~~ * * Each log target can have a name and can be referenced via the [[targets]] property * as follows: * * ~~~ * Yii::$application->log->targets['file']->enabled = false; * ~~~ * * @author Qiang Xue * @since 2.0 */ class Router extends Component { /** * @var Target[] list of log target objects or configurations. If the latter, target objects will * be created in [[init()]] by calling [[Yii::createObject()]] with the corresponding object configuration. */ public $targets = array(); /** * Initializes this application component. * This method is invoked when the Router component is created by the application. * The method attaches the [[processLogs]] method to both the [[Logger::EVENT_FLUSH]] event * and the [[Logger::EVENT_FINAL_FLUSH]] event. */ public function init() { parent::init(); foreach ($this->targets as $name => $target) { if (!$target instanceof Target) { $this->targets[$name] = Yii::createObject($target); } } Yii::getLogger()->on(Logger::EVENT_FLUSH, array($this, 'processMessages')); Yii::getLogger()->on(Logger::EVENT_FINAL_FLUSH, array($this, 'processMessages')); } /** * Retrieves and processes log messages from the system logger. * This method mainly serves the event handler to the [[Logger::EVENT_FLUSH]] event * and the [[Logger::EVENT_FINAL_FLUSH]] event. * It will retrieve the available log messages from the [[Yii::getLogger()|system logger]] * and invoke the registered [[targets|log targets]] to do the actual processing. * @param \yii\base\Event $event event parameter */ public function processMessages($event) { $messages = Yii::getLogger()->messages; $final = $event->name === Logger::EVENT_FINAL_FLUSH; foreach ($this->targets as $target) { if ($target->enabled) { $target->processMessages($messages, $final); } } } }