Phalcon\Logger\Adapter\Udplogger::commit PHP Méthode

commit() public méthode

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