Phalcon\Logger\Adapter\Udplogger::getFormatter PHP 메소드

getFormatter() 공개 메소드

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