HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
Yii2DebugLogRoute.php
Go to the documentation of this file.
1 <?php
2 
7 class Yii2DebugLogRoute extends CLogRoute
8 {
12  private $localLogs = array();
13 
17  public function getLogs()
18  {
19  return $this->localLogs;
20  }
21 
26  protected function processLogs($logs)
27  {
28  $this->localLogs = array_merge($this->localLogs, $logs);
29  }
30 }