Horde_ActiveSync_Wbxml_Encoder::_logEndTag PHP Method

_logEndTag() private method

Log the endtag output
private _logEndTag ( ) : void
return void
    private function _logEndTag()
    {
        $spaces = str_repeat(' ', count($this->_logStack) - 1);
        $tag = array_pop($this->_logStack);
        $this->_logger->debug(sprintf('[%s] O %s </%s>', $this->_procid, $spaces, $tag));
    }