Пример #1
0
 private function _logDebug($msg)
 {
     $this->_bootLogger->debug(sprintf('(Primary Bootstrapper) %s', $msg));
 }
Пример #2
0
 public function testDebug()
 {
     $this->expectOutputRegex('~some message~');
     $this->_sut->debug('some message', array('foo' => 'bar'));
     $this->_sut->handleBootException(new RuntimeException());
 }