Example #1
0
 /**
  * ログ出力
  */
 public function __call($name, $args)
 {
     if (false !== ($level = LogLevel::toInt($name))) {
         $this->post(Log::create(isset($args[0]) ? $args[0] : 'no message', isset($args[1]) ? $args[1] : [], $level, isset($args[2]) ? $args[2] : null));
         return true;
     }
     throw new Exception\InvalidMethod($name, $this);
 }
Example #2
0
 /**
  * ロガーの登録
  *
  * @depends testLoadModule
  */
 public function testLogger($module)
 {
     $logger = $module->getLogger();
     $logger->post(Log::create('ログテスト(INFO)', ['method' => __METHOD__], LogLevel::INFO, 'tag1'));
     $logger->emerg("MESSAGE");
     $logger->alert("MESSAGE");
     $logger->crit("MESSAGE");
     $logger->err("MESSAGE");
     $logger->warning("MESSAGE");
     $logger->notice("MESSAGE");
     $logger->info("MESSAGE");
     $logger->debug("MESSAGE");
     $logger->debug("テスト", ['file' => __FILE__, 'line' => __LINE__], ['phpunit', 'nora']);
     $module->register();
     trigger_error('hoge');
     trigger_error('hoge', E_USER_ERROR);
 }