Phalcon\Logger\Adapter\Udplogger::getFormatter PHP Method

getFormatter() public method

public getFormatter ( ) : Phalcon\Logger\FormatterInterface
return Phalcon\Logger\FormatterInterface
    public function getFormatter()
    {
        if (!$this->_formatter) {
            $this->_formatter = new LineFormatter();
        }
        return $this->_formatter;
    }