Horde_ActiveSync_Wbxml_Encoder::_logContent PHP Method

_logContent() private method

Log the content output
private _logContent ( string $content ) : void
$content string The output
return void
    private function _logContent($content)
    {
        $spaces = str_repeat(' ', count($this->_logStack));
        $this->_logger->debug(sprintf('[%s] O %s %s', $this->_procid, $spaces, $content));
    }