Phalcon\Logger\Adapter\Firelogger::getFormatter PHP Méthode

getFormatter() public méthode

public getFormatter ( ) : Phalcon\Logger\FormatterInterface
Résultat Phalcon\Logger\FormatterInterface
    public function getFormatter()
    {
        if (!$this->_formatter) {
            $this->_formatter = new FireloggerFormatter($this->name);
        }
        return $this->_formatter;
    }