} else {
$this->_logger->err('Unmatched end tag:');
$this->_logger->err(print_r($element, true));
- //$bt = debug_backtrace();
- // $c = count($bt);
- // $this->_logger->err('From ' . $bt[$c-2]['file'] . ':' . $bt[$c - 2]['line']);
$this->_ungetElement($element);
}
$ch = fread($this->_in, 1);
if (strlen($ch) > 0) {
$ch = ord($ch);
- $this->_logger->debug('_getByte: ' . $ch);
+ //$this->_logger->debug('_getByte: ' . $ch);
return $ch;
} else {
return;
}
}
- $this->_logger->debug('_getMBUInt(): ' . $uint);
+ //$this->_logger->debug('_getMBUInt(): ' . $uint);
return $uint;
}
$stringtable = fread($this->_in, $length);
}
- $this->_logger->debug('_getStringTable(): ' . $stringtable);
+ //$this->_logger->debug('_getStringTable(): ' . $stringtable);
return $stringtable;
}