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

commit() 공개 메소드

public commit ( )
    public function commit()
    {
        if (!$this->isTransaction || empty($this->logs)) {
            $this->isTransaction = false;
            return;
        }
        $this->send();
        $this->isTransaction = false;
    }